.torch_dynamo¶
modules
onnx_custom_backend¶
- experimental_experiment.torch_dynamo.onnx_custom_backend(graph_module: torch.fx.GraphModule, args: List[torch.Tensor], target_opset: int | None = None, backend: str = 'ort', verbose: int | Tuple[int, int] = 0, dump_prefix: None = None, dump_patterns: str | None = None, providers: Tuple[str] | None = None, raise_exc: bool = True, storage: Dict[str, Any] | None = None, enable_pattern: str | List[str | type] | None = 'default', disable_pattern: str | List[str | type] | None = None, pre_ort_model_transforms: Callable[[ModelProto], ModelProto] | List[Callable[[ModelProto], ModelProto]] | None = None, ort_optimization_level: str | None = None, dispatcher: Dispatcher | None = None, rename_inputs: bool = True, optimize: bool = True, exporter: str | None = None, processor: str = 'CPU', order_algorithm: str | None = None, options: OptimizationOptions | None = None, export_options: str | ExportOptions | None = None) Callable[source]¶
Custom backend to export torch models into onnx (see torch.compiler). This backend relies on onnxruntime and tries to be as efficient as possible.
- Parameters:
graph_module – graph to export
args – arguments
target_opset – opset to use for the conversion
backend – only ‘ort’ is allowed
verbose – adjust verbosity, if tuple, if gives different verbosity level to the exporter and the runtime
dump_prefix – to dump the models and the inputs
dump_patterns – dump the patterns as well
providers – where to run the model, by default
raise_exc – raise an exception whenever something goes wrong
storage – to store any interesting objects during the process
enable_pattern – optimization patterns to enable
disable_pattern – optimization patterns to disable
pre_ort_model_transforms – list of transformations applied on the final ModelProto
ort_optimization_level – graph optimization level for onnxruntime, the default value is the same as what onnxruntime defines
dispatcher – see
experimental_experiment.torch_interpreter.Dispatcherrename_inputs – rename the inputs
optimize – enable or disable the optimization
exporter – use a different exporter
processor – optimization should be made for this processor or this list of processors (comma separated value)
order_algorithm – algorithm optimizing the order the onnx node, none by default
options – to define custom Optimization options, in that case, any other optimization parameter is ignored
export_options – see
ExportOptions
- Returns:
Callable
See 301: Compares LLAMA exporters for onnxrt backend or 101: A custom backend for torch for examples. If not empty, storage keeps the memory of the data generated, onnx models, graph module as well the inputs and outputs when the model is run.
The following example shows how to use the custom backend (based on onnxruntime).
<<<
import torch from experimental_experiment.torch_dynamo import onnx_custom_backend class MLP(torch.nn.Module): def __init__(self): super().__init__() self.layers = torch.nn.Sequential( torch.nn.Linear(10, 32), torch.nn.Sigmoid(), torch.nn.Linear(32, 1), ) def forward(self, x): return self.layers(x) x = torch.randn(3, 10, dtype=torch.float32) mlp = MLP() expected = mlp(x) compiled_model = torch.compile( mlp, backend=lambda *args, **kwargs: onnx_custom_backend(*args, verbose=1, **kwargs), dynamic=False, fullgraph=True, ) try: got = compiled_model(x) diff = (expected - got).max() print(f"discrepancies: {diff}") except (ImportError, AttributeError) as e: print("onnxruntime-training is not installed", e)
>>>
[onnx_custom_backend] starts conversion to onnx. [to_onnx] build the graph module from <class 'torch.fx.graph_module.GraphModule.__new__.<locals>.GraphModuleImpl'>, type(args)=<class 'tuple'> [to_onnx] build the graph module with input_names=['input0', 'input1', 'input2', 'input3', 'input4'] [_make_builder_interpreter] use existing <class 'torch.fx.graph_module.GraphModule.__new__.<locals>.GraphModuleImpl'> [to_onnx] graph module done in 0.00031278499955078587 s [to_onnx] start creating the onnx nodes [to_onnx] interpreter.function_options=FunctionOptions(export_as_function=True, name='*', domain='*', external_threshold=256, move_initializer_to_constant=True, return_initializer=True, merge_allowed=True, rename_allowed=True) [to_onnx] 13 onnx nodes done in 0.0010796219976327848 s [to_onnx] start conversion to onnx (before optimization) mask_outputs=None [GraphBuilder.optimize] start with 13 nodes [GraphBuilder.optimize] #patterns=47 [GraphBuilderPatternOptimization.optimize] start with 7 nodes, 0 initializers, 47 patterns, priorities=[0, 1] [GraphBuilderPatternOptimization.optimize] iteration 0: 7 nodes, priority=0 [GraphBuilderPatternOptimization.optimize] increase priority to 1 [GraphBuilderPatternOptimization.optimize] iteration 1: 7 nodes, priority=1 [GraphBuilderPatternOptimization.optimize] applies 3 matches, 2*MatMulAddPattern, 1*TransposeEqualReshapePattern - time=0.000 | max_time=MatMulAddPattern:0.000 [GraphBuilderPatternOptimization.optimize] iteration 2: 5 nodes, priority=1 [GraphBuilderPatternOptimization.optimize] applies 1 matches, [0]=MatchResult: TransposeMatMulPattern replaces ['Transpose', 'Gemm'] - time=0.000 | max_time=MatMulAddPattern:0.000 [GraphBuilderPatternOptimization.optimize] iteration 3: 4 nodes, priority=1 [GraphBuilderPatternOptimization.optimize] stops current_priority_index=2, priorities=[0, 1] [GraphBuilderPatternOptimization.optimize] done after 4 iterations with 4 nodes in 0.004 [GraphBuilder.optimize] done with 4 nodes in 0.004 [GraphBuilder-NYM.to_onnx] make_model 1 inits 0 params [GraphBuilder-NYM.time_evaluation_constants_] 0 [GraphBuilder-NYM._build_initializers] start with 1 initializers, large_model=False, external_threshold=1024 [GraphBuilder-NYM._build_initializers] switch low/high order [GraphBuilder-NYM._build_initializers] done in 7.159978849813342e-07s with 1 initializers, 0 large initializers [GraphBuilder._add_shape_information] dynamic shapes replacements={} [to_onnx] to_onnx done in 0.00471644000208471s and 4 nodes, 1 initializers, 5 inputs, 1 outputs [onnx_custom_backend] to_onnx done in 0.006397088000085205 with 4 nodes and 0 local functions. [onnx_custom_backend] starts creating InferenceSession [onnx_custom_backend] InferenceSession done in 0.0019062020001001656 discrepancies: 0.0
onnx_debug_backend¶
- experimental_experiment.torch_dynamo.onnx_debug_backend(graph_module: torch.fx.GraphModule, args: List[torch.Tensor | torch.SymInt | torch.SymFloat], target_opset: int | None = None, backend: str | Callable[[ModelProto, bool | None], Any] = 'ort', verbose: int | Tuple[int, int] = 0, dump_prefix: None = None, dump_patterns: str | None = None, providers: Tuple[str] | None = None, raise_exc: bool = True, storage: Dict[str, Any] | None = None, raise_list: Set[str] | None = None, enable_pattern: str | List[str | type] | None = 'default', disable_pattern: str | List[str | type] | None = None, pre_ort_model_transforms: Callable[[ModelProto], ModelProto] | List[Callable[[ModelProto], ModelProto]] | None = None, ort_optimization_level: str | None = None, dispatcher: Dispatcher | None = None, rename_inputs: bool = True, optimize: bool = True, processor: str = 'CPU', order_algorithm: str | None = None) Callable[source]¶
Custom backend to export torch models into onnx (see torch.compiler). This backend is not meant to be efficient, it is more to check the conversion is ok. It relies either on onnxruntime or the python reference implementation.
- Parameters:
graph_module – graph to export
args – arguments
target_opset – opset to use for the conversion
backend – after the conversion, the model is executed with a runtime, onnxruntime or the reference implementation, it must be a value among ‘ort’, ‘ref’ or a class, it can be a function as well which returns an object behaving the same way
verbose – adjust verbosity, if tuple, if gives different verbosity level to the exporter and the runtime
dump_prefix – prefix used to dump the model generated by the backend
dump_patterns – dump the patterns as well
providers – where to run the model, by default
raise_exc – raise an exception whenever something goes wrong
storage – to store any interesting objects during the process
raise_list – the builder stops any time a name falls into that list, this is a debbuging tool
enable_pattern – optimization patterns to enable
disable_pattern – optimization patterns to disable
pre_ort_model_transforms – list of transformations applied on the final ModelProto
ort_optimization_level – graph optimization level for onnxruntime, the default value is the same as what onnxruntime defines
dispatcher – see
experimental_experiment.torch_interpreter.Dispatcherrename_inputs – rename inputs into
input_{i}optimize – enable or disable the optimization
processor – specifies the processor it is optimized for
order_algorithm – algorithm optimizing the order the onnx node, none by default
- Returns:
Callable
See 301: Compares LLAMA exporters for onnxrt backend for an example. If not empty, storage keeps the memory of the data generated, onnx models, graph module as well the inputs and outputs when the model is run.
The following example shows how to use the reference implementation (
experimental_experiment.reference.ExtendedReferenceEvaluator) to run the onnx model and display the intermediate results.<<<
import torch from experimental_experiment.torch_dynamo import onnx_debug_backend class MLP(torch.nn.Module): def __init__(self): super().__init__() self.layers = torch.nn.Sequential( torch.nn.Linear(10, 32), torch.nn.Sigmoid(), torch.nn.Linear(32, 1), ) def forward(self, x): return self.layers(x) x = torch.randn(3, 10, dtype=torch.float32) mlp = MLP() expected = mlp(x) compiled_model = torch.compile( mlp, backend=lambda *args, **kwargs: onnx_debug_backend( *args, verbose=(1, 10), backend="ref", **kwargs ), dynamic=False, fullgraph=True, ) got = compiled_model(x) diff = (expected - got).max() print(f"discrepancies: {diff}")
>>>
[to_onnx] build the graph module from <class 'torch.fx.graph_module.GraphModule.__new__.<locals>.GraphModuleImpl'>, type(args)=<class 'tuple'> [to_onnx] build the graph module with input_names=['input0', 'input1', 'input2', 'input3', 'input4'] [_make_builder_interpreter] use existing <class 'torch.fx.graph_module.GraphModule.__new__.<locals>.GraphModuleImpl'> [to_onnx] graph module done in 0.0006713640032103285 s [to_onnx] start creating the onnx nodes [to_onnx] interpreter.function_options=FunctionOptions(export_as_function=True, name='*', domain='*', external_threshold=256, move_initializer_to_constant=True, return_initializer=True, merge_allowed=True, rename_allowed=True) [to_onnx] 13 onnx nodes done in 0.0019637519981188234 s [to_onnx] start conversion to onnx (before optimization) mask_outputs=None [GraphBuilder.optimize] start with 13 nodes [GraphBuilder.optimize] #patterns=47 [GraphBuilderPatternOptimization.optimize] start with 7 nodes, 0 initializers, 47 patterns, priorities=[0, 1] [GraphBuilderPatternOptimization.optimize] iteration 0: 7 nodes, priority=0 [GraphBuilderPatternOptimization.optimize] increase priority to 1 [GraphBuilderPatternOptimization.optimize] iteration 1: 7 nodes, priority=1 [GraphBuilderPatternOptimization.optimize] applies 3 matches, 2*MatMulAddPattern, 1*TransposeEqualReshapePattern - time=0.001 | max_time=MatMulAddPattern:0.000 [GraphBuilderPatternOptimization.optimize] iteration 2: 5 nodes, priority=1 [GraphBuilderPatternOptimization.optimize] applies 1 matches, [0]=MatchResult: TransposeMatMulPattern replaces ['Transpose', 'Gemm'] - time=0.000 | max_time=TransposeMatMulPattern:0.000 [GraphBuilderPatternOptimization.optimize] iteration 3: 4 nodes, priority=1 [GraphBuilderPatternOptimization.optimize] stops current_priority_index=2, priorities=[0, 1] [GraphBuilderPatternOptimization.optimize] done after 4 iterations with 4 nodes in 0.007 [GraphBuilder.optimize] done with 4 nodes in 0.007 [GraphBuilder-JBS.to_onnx] make_model 1 inits 0 params [GraphBuilder-JBS.time_evaluation_constants_] 0 [GraphBuilder-JBS._build_initializers] start with 1 initializers, large_model=False, external_threshold=1024 [GraphBuilder-JBS._build_initializers] switch low/high order [GraphBuilder-JBS._build_initializers] done in 9.700015652924776e-07s with 1 initializers, 0 large initializers [GraphBuilder._add_shape_information] dynamic shapes replacements={} [to_onnx] to_onnx done in 0.007923085999209434s and 4 nodes, 1 initializers, 5 inputs, 1 outputs +C init7_s2_-1_1: int64:(2,):[-1, 1] +I input0: float32:(32, 10):0.06732019037008286,0.14446905255317688,0.21055106818675995,0.06030227616429329,-0.19678929448127747... +I input1: float32:(32,):0.09796348959207535,0.27622032165527344,-0.24005451798439026,0.11813455075025558,-0.1093461811542511... +I input2: float32:(3, 10):-0.0046203178353607655,1.4073612689971924,0.0462416410446167,0.12321031093597412,1.5393325090408325... +I input3: float32:(1, 32):0.0851244106888771,0.1367262303829193,-0.015866054221987724,-0.1055331751704216,0.09521375596523285... +I input4: float32:(1,):[-0.13155002892017365] Gemm(input2, input0, input1) -> input_1 + input_1: float32:(3, 32):0.7855275869369507,0.5905524492263794,1.0900875329971313,1.1611340045928955,-0.6073855757713318... Sigmoid(input_1) -> input_2 + input_2: float32:(3, 32):0.6868702173233032,0.6434918642044067,0.7483981847763062,0.7615386843681335,0.352655827999115... Reshape(input3, init7_s2_-1_1) -> _onx_transpose_l_self_modules_layers_modules_2_parameters_weight_0 + _onx_transpose_l_self_modules_layers_modules_2_parameters_weight_0: float32:(32, 1):0.0851244106888771,0.1367262303829193,-0.015866054221987724,-0.1055331751704216,0.09521375596523285... Gemm(input_2, _onx_transpose_l_self_modules_layers_modules_2_parameters_weight_0, input4) -> output_0 + output_0: float32:(3, 1):[0.11167879402637482, 0.3140575885772705, 0.15468166768550873] discrepancies: 0.0
dynger_backend¶
- experimental_experiment.torch_dynamo.dynger_backend(graph_module: GraphModule, args: List[Tensor | SymInt | SymFloat], dynamic_shapes: Dict[str, Any] | Tuple[Any] | None = None, optimize: bool = True, verbose: int | Tuple[int, int] = 0) Callable[source]¶
Eager backend for dynamo.
- Parameters:
graph_module – graph to export
args – arguments
optimize – optimize or not, those optimization would be done on the graph module itself
verbose – adjust verbosity, if tuple, if gives different verbosity level to the exporter and the runtime
- Returns:
Callable
Next examples shows how to display intermediate results while executing the graph produced by torch dynamo.
<<<
import torch from experimental_experiment.torch_dynamo import dynger_backend class MLP(torch.nn.Module): def __init__(self): super().__init__() self.layers = torch.nn.Sequential( torch.nn.Linear(10, 32), torch.nn.Sigmoid(), torch.nn.Linear(32, 1), ) def forward(self, x): return self.layers(x) x = torch.randn(3, 10, dtype=torch.float32) mlp = MLP() expected = mlp(x) compiled_model = torch.compile( mlp, backend=lambda *args, **kwargs: dynger_backend(*args, verbose=10, **kwargs), dynamic=False, fullgraph=True, ) got = compiled_model(x) diff = (expected - got).max() print(f"discrepancies: {diff}")
>>>
[dynger_backend] use existing <class 'torch.fx.graph_module.GraphModule.__new__.<locals>.GraphModuleImpl'> [dynger_backend] begin execution with 9 nodes <built-in function linear>((l_x_, l_self_modules_layers_modules_0_parameters_weight_, l_self_modules_layers_modules_0_parameters_bias_)) -> input_1 + input_1: torch.float32:torch.Size([3, 32]):0.3614724278450012,-0.13333916664123535,-0.009087096899747849,-0.23558425903320312,-0.08031607419252396... <built-in method sigmoid of type object at 0x7fcf3d2f7d40>((input_1,)) -> input_2 + input_2: torch.float32:torch.Size([3, 32]):0.5893968343734741,0.4667145013809204,0.49772822856903076,0.44137483835220337,0.4799317419528961... <built-in function linear>((input_2, l_self_modules_layers_modules_2_parameters_weight_, l_self_modules_layers_modules_2_parameters_bias_)) -> input_3 + input_3: torch.float32:torch.Size([3, 1]):0.029687456786632538,0.148967444896698,0.058057866990566254 [dynger_backend] done discrepancies: 0.0
Other functions¶
- experimental_experiment.torch_dynamo.filter_decomposition_table(existing_table: Dict | None = None, filter_fct: Callable[[Any], bool] | None = None) Dict[source]¶
Returns the decomposition table when some conversions because their translation in ONNX is less efficient.
- Parameters:
existing_table – dictionary of decompositions, by default, it is
torch._decomp.decomposition_table.filter_fct – if specified, a decomposition function is remove if the function returns false
- Returns:
new table
import torch from torch._dynamo.backends.common import aot_autograd from experimental_experiment.torch_dynamo import filter_decomposition_table aot_compiler = aot_autograd( fw_compiler=backend_debug, decompositions=filter_decomposition_table() ) compiled_model = torch.compile( model, backend=aot_compiler, dynamic=dynamic, fullgraph=fullgraph, )
The value is:
<<<
import pprint from experimental_experiment.torch_dynamo import filter_decomposition_table pprint.pprint(filter_decomposition_table())
>>>
{<torch._higher_order_ops.out_dtype.OutDtypeOperator object at 0x7fce35030560>: <function out_dtype_decomp at 0x7fce34db71a0>, <OpOverload(op='aten.celu', overload='default')>: <function celu at 0x7fce34bfea20>, <OpOverload(op='aten.celu', overload='out')>: <function celu at 0x7fce34bfea20>, <OpOverload(op='aten.elu', overload='default')>: <function elu at 0x7fce34bff380>, <OpOverload(op='aten.elu', overload='out')>: <function elu at 0x7fce34bff380>, <OpOverload(op='aten.relu', overload='default')>: <function relu at 0x7fce34bff740>, <OpOverload(op='aten.relu', overload='out')>: <function relu at 0x7fce34bff740>, <OpOverload(op='aten.channel_shuffle', overload='default')>: <function channel_shuffle at 0x7fce34bffce0>, <OpOverload(op='aten.channel_shuffle', overload='out')>: <function channel_shuffle at 0x7fce34bffce0>, <OpOverload(op='aten.leaky_relu', overload='default')>: <function leaky_relu at 0x7fce34bffec0>, <OpOverload(op='aten.leaky_relu', overload='out')>: <function leaky_relu at 0x7fce34bffec0>, <OpOverload(op='aten.mish', overload='default')>: <function mish at 0x7fce34a302c0>, <OpOverload(op='aten.mish', overload='out')>: <function mish at 0x7fce34a302c0>, <OpOverload(op='aten.softshrink', overload='out')>: <function softshrink at 0x7fce34bffc40>, <OpOverload(op='aten.selu', overload='default')>: <function selu at 0x7fce34a30680>, <OpOverload(op='aten.hardshrink', overload='default')>: <function hardshrink at 0x7fce34a311c0>, <OpOverload(op='aten.softplus', overload='default')>: <function softplus at 0x7fce34a30b80>, <OpOverload(op='aten.softplus', overload='out')>: <function softplus at 0x7fce34a30b80>, <OpOverload(op='aten.softshrink', overload='default')>: <function softshrink at 0x7fce34bffc40>, <OpOverload(op='aten.hardshrink', overload='out')>: <function hardshrink at 0x7fce34a311c0>, <OpOverload(op='aten.margin_ranking_loss', overload='default')>: <function margin_ranking_loss at 0x7fce34a31440>, <OpOverload(op='aten.pairwise_distance', overload='default')>: <function pairwise_distance at 0x7fce34a33a60>, <OpOverload(op='aten.hinge_embedding_loss', overload='default')>: <function hinge_embedding_loss at 0x7fce34a31760>, <OpOverload(op='aten.nll_loss', overload='default')>: <function nll_loss at 0x7fce34a31c60>, <OpOverload(op='aten.nll_loss', overload='out')>: <function nll_loss at 0x7fce34a31c60>, <OpOverload(op='aten.huber_loss', overload='default')>: <function huber_loss at 0x7fce34a31f80>, <OpOverload(op='aten.huber_loss', overload='out')>: <function huber_loss at 0x7fce34a31f80>, <OpOverload(op='aten.threshold', overload='default')>: <function threshold at 0x7fce34a32200>, <OpOverload(op='aten.threshold', overload='out')>: <function threshold at 0x7fce34a32200>, <OpOverload(op='aten.hardtanh', overload='default')>: <function hardtanh at 0x7fce34a32700>, <OpOverload(op='aten.hardtanh', overload='out')>: <function hardtanh at 0x7fce34a32700>, <OpOverload(op='aten.gelu', overload='default')>: <function gelu at 0x7fce34a32e80>, <OpOverload(op='aten.gelu', overload='out')>: <function gelu at 0x7fce34a32e80>, <OpOverload(op='aten.prelu', overload='default')>: <function prelu at 0x7fce34a33100>, <OpOverload(op='aten.relu6', overload='default')>: <function relu6 at 0x7fce34a33240>, <OpOverload(op='aten.glu', overload='default')>: <function glu at 0x7fce34a337e0>, <OpOverload(op='aten.glu', overload='out')>: <function glu at 0x7fce34a337e0>, <OpOverload(op='aten.pdist', overload='default')>: <function pdist at 0x7fce34a331a0>, <OpOverload(op='aten.pixel_shuffle', overload='default')>: <function pixel_shuffle at 0x7fce34a31e40>, <OpOverload(op='aten.pixel_shuffle', overload='out')>: <function pixel_shuffle at 0x7fce34a31e40>, <OpOverload(op='aten.pixel_unshuffle', overload='default')>: <function pixel_unshuffle at 0x7fce34a33b00>, <OpOverload(op='aten.pixel_unshuffle', overload='out')>: <function pixel_unshuffle at 0x7fce34a33b00>, <OpOverload(op='aten.special_i1', overload='out')>: <function i1 at 0x7fce34a59c60>, <OpOverload(op='aten.celu_', overload='default')>: <function celu at 0x7fce34bff6a0>, <OpOverload(op='aten.elu_', overload='default')>: <function elu at 0x7fce34a31b20>, <OpOverload(op='aten.special_i1', overload='default')>: <function i1 at 0x7fce34a59c60>, <OpOverload(op='aten.mish_', overload='default')>: <function mish at 0x7fce34a33ba0>, <OpOverload(op='aten.selu_', overload='default')>: <function selu at 0x7fce34a33ce0>, <OpOverload(op='aten.threshold_', overload='default')>: <function threshold at 0x7fce34a33e20>, <OpOverload(op='aten.special_bessel_j0', overload='default')>: <function bessel_j0 at 0x7fce34a58860>, <OpOverload(op='aten.special_bessel_j0', overload='out')>: <function bessel_j0 at 0x7fce34a58860>, <OpOverload(op='aten.special_bessel_j1', overload='default')>: <function bessel_j1 at 0x7fce34a58cc0>, <OpOverload(op='aten.special_bessel_j1', overload='out')>: <function bessel_j1 at 0x7fce34a58cc0>, <OpOverload(op='aten.special_entr', overload='default')>: <function entr at 0x7fce34a58fe0>, <OpOverload(op='aten.special_entr', overload='out')>: <function entr at 0x7fce34a58fe0>, <OpOverload(op='aten.special_erfcx', overload='default')>: <function erfcx at 0x7fce34a59300>, <OpOverload(op='aten.special_erfcx', overload='out')>: <function erfcx at 0x7fce34a59300>, <OpOverload(op='aten.special_i0e', overload='default')>: <function i0e at 0x7fce34a59800>, <OpOverload(op='aten.special_i0e', overload='out')>: <function i0e at 0x7fce34a59800>, <OpOverload(op='aten.special_i1e', overload='default')>: <function i1e at 0x7fce34a59a80>, <OpOverload(op='aten.special_i1e', overload='out')>: <function i1e at 0x7fce34a59a80>, <OpOverload(op='aten.special_log_ndtr', overload='default')>: <function log_ndtr at 0x7fce34a58900>, <OpOverload(op='aten.special_log_ndtr', overload='out')>: <function log_ndtr at 0x7fce34a58900>, <OpOverload(op='aten.logit', overload='default')>: <function logit at 0x7fce34a59ee0>, <OpOverload(op='aten.logit', overload='out')>: <function logit at 0x7fce34a59ee0>, <OpOverload(op='aten.special_xlog1py', overload='default')>: <function xlog1py at 0x7fce34a5a200>, <OpOverload(op='aten.special_xlog1py', overload='other_scalar')>: <function xlog1py at 0x7fce34a5a200>, <OpOverload(op='aten.special_xlog1py', overload='self_scalar')>: <function xlog1py at 0x7fce34a5a200>, <OpOverload(op='aten.special_xlog1py', overload='out')>: <function xlog1py at 0x7fce34a5a200>, <OpOverload(op='aten.special_xlog1py', overload='self_scalar_out')>: <function xlog1py at 0x7fce34a5a200>, <OpOverload(op='aten.special_xlog1py', overload='other_scalar_out')>: <function xlog1py at 0x7fce34a5a200>, <OpOverload(op='aten.mvlgamma', overload='default')>: <function multigammaln at 0x7fce34a5a520>, <OpOverload(op='aten.mvlgamma', overload='out')>: <function multigammaln at 0x7fce34a5a520>, <OpOverload(op='aten.special_ndtr', overload='default')>: <function ndtr at 0x7fce34a5a840>, <OpOverload(op='aten.special_ndtr', overload='out')>: <function ndtr at 0x7fce34a5a840>, <OpOverload(op='aten.special_ndtri', overload='default')>: <function ndtri at 0x7fce34a5ab60>, <OpOverload(op='aten.special_ndtri', overload='out')>: <function ndtri at 0x7fce34a5ab60>, <OpOverload(op='aten.special_spherical_bessel_j0', overload='default')>: <function spherical_bessel_j0 at 0x7fce34a5b100>, <OpOverload(op='aten.special_spherical_bessel_j0', overload='out')>: <function spherical_bessel_j0 at 0x7fce34a5b100>, <OpOverload(op='aten.special_zeta', overload='default')>: <function zeta at 0x7fce34a5b4c0>, <OpOverload(op='aten.special_zeta', overload='other_scalar')>: <function zeta at 0x7fce34a5b4c0>, <OpOverload(op='aten.special_zeta', overload='self_scalar')>: <function zeta at 0x7fce34a5b4c0>, <OpOverload(op='aten.special_zeta', overload='out')>: <function zeta at 0x7fce34a5b4c0>, <OpOverload(op='aten.special_zeta', overload='self_scalar_out')>: <function zeta at 0x7fce34a5b4c0>, <OpOverload(op='aten.special_zeta', overload='other_scalar_out')>: <function zeta at 0x7fce34a5b4c0>, <OpOverload(op='aten.renorm', overload='default')>: <function renorm at 0x7fce34d11f80>, <OpOverload(op='aten.renorm', overload='out')>: <function renorm at 0x7fce34d11f80>, <OpOverload(op='aten.index_fill_', overload='int_Tensor')>: <function index_fill_ at 0x7fce34d13a60>, <OpOverload(op='aten.repeat', overload='default')>: <function repeat at 0x7fce34d12480>, <OpOverload(op='aten.repeat', overload='out')>: <function repeat at 0x7fce34d12480>, <OpOverload(op='aten.roll', overload='default')>: <function roll at 0x7fce34d12a20>, <OpOverload(op='aten.roll', overload='out')>: <function roll at 0x7fce34d12a20>, <OpOverload(op='aten.rot90', overload='default')>: <function rot90 at 0x7fce34d12ca0>, <OpOverload(op='aten.rot90', overload='out')>: <function rot90 at 0x7fce34d12ca0>, <OpOverload(op='aten.index_fill', overload='int_Tensor_out')>: <function index_fill at 0x7fce34d13c40>, <OpOverload(op='aten.stack', overload='default')>: <function stack at 0x7fce34d12fc0>, <OpOverload(op='aten.stack', overload='out')>: <function stack at 0x7fce34d12fc0>, <OpOverload(op='aten.index_fill', overload='int_Scalar_out')>: <function index_fill at 0x7fce34d13c40>, <OpOverload(op='aten.unbind', overload='int')>: <function unbind at 0x7fce34d13600>, <OpOverload(op='aten.unbind', overload='Dimname')>: <function unbind at 0x7fce34d13600>, <OpOverload(op='aten.index_fill_', overload='int_Scalar')>: <function index_fill_ at 0x7fce34d13a60>, <OpOverload(op='aten.index_fill_', overload='Dimname_Scalar')>: <function index_fill_ at 0x7fce34d13a60>, <OpOverload(op='aten.index_fill_', overload='Dimname_Tensor')>: <function index_fill_ at 0x7fce34d13a60>, <OpOverload(op='aten.index_select', overload='default')>: <function index_select at 0x7fce34d11440>, <OpOverload(op='aten.index_select', overload='out')>: <function index_select at 0x7fce34d11440>, <OpOverload(op='aten.index_select', overload='dimname')>: <function index_select at 0x7fce34d11440>, <OpOverload(op='aten.index_select', overload='dimname_out')>: <function index_select at 0x7fce34d11440>, <OpOverload(op='aten.diag', overload='out')>: <function diag at 0x7fce34b302c0>, <OpOverload(op='aten.split_with_sizes', overload='default')>: <function split_with_sizes at 0x7fce34d111c0>, <OpOverload(op='aten.diagonal_scatter', overload='out')>: <function diagonal_scatter at 0x7fce34b30540>, <OpOverload(op='aten.diagonal', overload='Dimname')>: <function diagonal at 0x7fce34b30360>, <OpOverload(op='aten.t', overload='default')>: <function t at 0x7fce34b30d60>, <OpOverload(op='aten.diag_embed', overload='default')>: <function diag_embed at 0x7fce34b30860>, <OpOverload(op='aten.diag_embed', overload='out')>: <function diag_embed at 0x7fce34b30860>, <OpOverload(op='aten.block_diag', overload='default')>: <function _block_diag_iterable at 0x7fce34b30c20>, <OpOverload(op='aten.block_diag', overload='out')>: <function _block_diag_iterable at 0x7fce34b30c20>, <OpOverload(op='aten.alias', overload='default')>: <function alias at 0x7fce34b30f40>, <OpOverload(op='aten.unfold', overload='default')>: <function unfold at 0x7fce34b31120>, <OpOverload(op='aten.unfold_copy', overload='default')>: <function unfold_copy at 0x7fce34b31580>, <OpOverload(op='aten.view', overload='default')>: <function view at 0x7fce34b31940>, <OpOverload(op='aten.unfold_copy', overload='out')>: <function unfold_copy at 0x7fce34b31580>, <OpOverload(op='aten.cumsum', overload='default')>: <function cumsum at 0x7fce34b31620>, <OpOverload(op='aten.cumsum', overload='dimname')>: <function cumsum at 0x7fce34b31620>, <OpOverload(op='aten.cumsum', overload='dimname_out')>: <function cumsum at 0x7fce34b31620>, <OpOverload(op='aten.cumsum', overload='out')>: <function cumsum at 0x7fce34b31620>, <OpOverload(op='aten.cumprod', overload='default')>: <function cumprod at 0x7fce34b316c0>, <OpOverload(op='aten.cumprod', overload='dimname')>: <function cumprod at 0x7fce34b316c0>, <OpOverload(op='aten.cumprod', overload='dimname_out')>: <function cumprod at 0x7fce34b316c0>, <OpOverload(op='aten.cumprod', overload='out')>: <function cumprod at 0x7fce34b316c0>, <OpOverload(op='aten.unsqueeze', overload='default')>: <function unsqueeze at 0x7fce34b31800>, <OpOverload(op='aten.logspace', overload='Scalar_Tensor_out')>: <function logspace at 0x7fce34b33600>, <OpOverload(op='aten.logspace', overload='Tensor_Scalar_out')>: <function logspace at 0x7fce34b33600>, <OpOverload(op='aten.ones', overload='default')>: <function ones at 0x7fce34b323e0>, <OpOverload(op='aten.arange', overload='start_step')>: <function arange at 0x7fce34b32de0>, <OpOverload(op='aten.logspace', overload='Tensor_Tensor_out')>: <function logspace at 0x7fce34b33600>, <OpOverload(op='aten.arange', overload='start_out')>: <function arange at 0x7fce34b32de0>, <OpOverload(op='aten.logspace', overload='out')>: <function logspace at 0x7fce34b33600>, <OpOverload(op='aten.logspace', overload='default')>: <function logspace at 0x7fce34b33600>, <OpOverload(op='aten.lerp', overload='Scalar')>: <function lerp at 0x7fce34b33100>, <OpOverload(op='aten.lerp', overload='Tensor')>: <function lerp at 0x7fce34b33100>, <OpOverload(op='aten.lerp', overload='Scalar_out')>: <function lerp at 0x7fce34b33100>, <OpOverload(op='aten.lerp', overload='Tensor_out')>: <function lerp at 0x7fce34b33100>, <OpOverload(op='aten.logspace', overload='Scalar_Tensor')>: <function logspace at 0x7fce34b33600>, <OpOverload(op='aten.linspace', overload='Tensor_Tensor')>: <function linspace at 0x7fce34b33380>, <OpOverload(op='aten.linspace', overload='Tensor_Scalar')>: <function linspace at 0x7fce34b33380>, <OpOverload(op='aten.linspace', overload='Scalar_Tensor')>: <function linspace at 0x7fce34b33380>, <OpOverload(op='aten.linspace', overload='default')>: <function linspace at 0x7fce34b33380>, <OpOverload(op='aten.linspace', overload='out')>: <function linspace at 0x7fce34b33380>, <OpOverload(op='aten.linspace', overload='Tensor_Tensor_out')>: <function linspace at 0x7fce34b33380>, <OpOverload(op='aten.linspace', overload='Tensor_Scalar_out')>: <function linspace at 0x7fce34b33380>, <OpOverload(op='aten.linspace', overload='Scalar_Tensor_out')>: <function linspace at 0x7fce34b33380>, <OpOverload(op='aten.meshgrid', overload='default')>: <function meshgrid at 0x7fce34b332e0>, <OpOverload(op='aten.logspace', overload='Tensor_Tensor')>: <function logspace at 0x7fce34b33600>, <OpOverload(op='aten.logspace', overload='Tensor_Scalar')>: <function logspace at 0x7fce34b33600>, <OpOverload(op='aten.meshgrid', overload='indexing')>: <function meshgrid at 0x7fce34b332e0>, <OpOverload(op='aten.eye', overload='default')>: <function eye at 0x7fce34b33740>, <OpOverload(op='aten.eye', overload='m')>: <function eye at 0x7fce34b33740>, <OpOverload(op='aten.eye', overload='out')>: <function eye at 0x7fce34b33740>, <OpOverload(op='aten.eye', overload='m_out')>: <function eye at 0x7fce34b33740>, <OpOverload(op='aten.triu', overload='out')>: <function triu at 0x7fce34b33c40>, <OpOverload(op='aten.randn', overload='default')>: <function randn at 0x7fce34b5c220>, <OpOverload(op='aten.triu', overload='default')>: <function triu at 0x7fce34b33c40>, <OpOverload(op='aten.masked_fill', overload='Scalar')>: <function masked_fill at 0x7fce34b5c5e0>, <OpOverload(op='aten.masked_fill', overload='Tensor')>: <function masked_fill at 0x7fce34b5c5e0>, <OpOverload(op='aten.masked_fill', overload='Scalar_out')>: <function masked_fill at 0x7fce34b5c5e0>, <OpOverload(op='aten.masked_fill', overload='Tensor_out')>: <function masked_fill at 0x7fce34b5c5e0>, <OpOverload(op='aten.masked_fill_', overload='Scalar')>: <function masked_fill_ at 0x7fce34b5c400>, <OpOverload(op='aten.masked_fill_', overload='Tensor')>: <function masked_fill_ at 0x7fce34b5c400>, <OpOverload(op='aten.norm', overload='Scalar')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.norm', overload='ScalarOpt_dim')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.norm', overload='names_ScalarOpt_dim')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.norm', overload='ScalarOpt_dim_dtype')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.norm', overload='dtype_out')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.norm', overload='out')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.norm', overload='ScalarOpt_dtype')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.norm', overload='ScalarOpt_dtype_out')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.norm', overload='Scalar_out')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.norm', overload='names_ScalarOpt_dim_dtype')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.norm', overload='names_dtype_out')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.norm', overload='names_out')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.trace', overload='default')>: <function trace at 0x7fce34b5cd60>, <OpOverload(op='aten.trace', overload='out')>: <function trace at 0x7fce34b5cd60>, <OpOverload(op='aten.tril', overload='default')>: <function tril at 0x7fce34b5d080>, <OpOverload(op='aten.tril', overload='out')>: <function tril at 0x7fce34b5d080>, <OpOverload(op='aten.tril_indices', overload='default')>: <function tril_indices at 0x7fce34b5d1c0>, <OpOverload(op='aten.tril_indices', overload='out')>: <function tril_indices at 0x7fce34b5d1c0>, <OpOverload(op='aten.triu_indices', overload='default')>: <function triu_indices at 0x7fce34b5d4e0>, <OpOverload(op='aten.triu_indices', overload='out')>: <function triu_indices at 0x7fce34b5d4e0>, <OpOverload(op='aten.bucketize', overload='Tensor')>: <function bucketize at 0x7fce34b5d760>, <OpOverload(op='aten.bucketize', overload='Scalar')>: <function bucketize at 0x7fce34b5d760>, <OpOverload(op='aten.bucketize', overload='Tensor_out')>: <function bucketize at 0x7fce34b5d760>, <OpOverload(op='aten.bucketize', overload='Scalar_out')>: <function bucketize at 0x7fce34b5d760>, <OpOverload(op='aten.deg2rad', overload='out')>: <function deg2rad at 0x7fce34b5e840>, <OpOverload(op='aten.cauchy', overload='default')>: <function cauchy at 0x7fce34b5da80>, <OpOverload(op='aten.cauchy', overload='out')>: <function cauchy at 0x7fce34b5da80>, <OpOverload(op='aten.deg2rad', overload='default')>: <function deg2rad at 0x7fce34b5e840>, <OpOverload(op='aten.exponential', overload='default')>: <function exponential at 0x7fce34b5dda0>, <OpOverload(op='aten.exponential', overload='out')>: <function exponential at 0x7fce34b5dda0>, <OpOverload(op='aten.geometric', overload='default')>: <function geometric at 0x7fce34b5e0c0>, <OpOverload(op='aten.geometric', overload='out')>: <function geometric at 0x7fce34b5e0c0>, <OpOverload(op='aten.log_normal', overload='default')>: <function log_normal at 0x7fce34b5e3e0>, <OpOverload(op='aten.log_normal', overload='out')>: <function log_normal at 0x7fce34b5e3e0>, <OpOverload(op='aten.normal_', overload='default')>: <function normal_ at 0x7fce34b5e480>, <OpOverload(op='aten.rad2deg', overload='default')>: <function rad2deg at 0x7fce34b5eca0>, <OpOverload(op='aten.rad2deg', overload='out')>: <function rad2deg at 0x7fce34b5eca0>, <OpOverload(op='aten.count_nonzero', overload='dim_IntList')>: <function count_nonzero at 0x7fce34b5dc60>, <OpOverload(op='aten.count_nonzero', overload='dim_IntList_out')>: <function count_nonzero at 0x7fce34b5dc60>, <OpOverload(op='aten.count_nonzero', overload='default')>: <function count_nonzero at 0x7fce34b5dc60>, <OpOverload(op='aten.count_nonzero', overload='out')>: <function count_nonzero at 0x7fce34b5dc60>, <OpOverload(op='aten.dot', overload='default')>: <function dot at 0x7fce34b5f100>, <OpOverload(op='aten.dot', overload='out')>: <function dot at 0x7fce34b5f100>, <OpOverload(op='aten.vdot', overload='default')>: <function vdot at 0x7fce34b5f4c0>, <OpOverload(op='aten.vdot', overload='out')>: <function vdot at 0x7fce34b5f4c0>, <OpOverload(op='aten.select_scatter', overload='out')>: <function select_scatter at 0x7fce34b5f740>, <OpOverload(op='aten.abs_', overload='default')>: <function abs at 0x7fce34b5d940>, <OpOverload(op='aten.acos_', overload='default')>: <function acos at 0x7fce34b5f560>, <OpOverload(op='aten.acosh_', overload='default')>: <function acosh at 0x7fce34b5f7e0>, <OpOverload(op='aten.add_', overload='Tensor')>: <function add at 0x7fce34b5f920>, <OpOverload(op='aten.add_', overload='Scalar')>: <function add at 0x7fce34b5f920>, <OpOverload(op='aten.conj_physical_', overload='default')>: <function conj_physical at 0x7fce34b5fd80>, <OpOverload(op='aten.addcmul_', overload='default')>: <function addcmul at 0x7fce34b5fa60>, <OpOverload(op='aten.addcdiv_', overload='default')>: <function addcdiv at 0x7fce34b5fba0>, <OpOverload(op='aten.asin_', overload='default')>: <function asin at 0x7fce34b5fce0>, <OpOverload(op='aten.asinh_', overload='default')>: <function asinh at 0x7fce34b5fe20>, <OpOverload(op='aten.clamp_max_', overload='Tensor')>: <function clamp_max at 0x7fce34b5fec0>, <OpOverload(op='aten.clamp_max_', overload='default')>: <function clamp_max at 0x7fce34b5fec0>, <OpOverload(op='aten.atan_', overload='default')>: <function atan at 0x7fce34b5ff60>, <OpOverload(op='aten.atanh_', overload='default')>: <function atanh at 0x7fce34b8c0e0>, <OpOverload(op='aten.xlogy_', overload='Scalar_Other')>: <function xlogy at 0x7fce34b8fba0>, <OpOverload(op='aten.atan2_', overload='default')>: <function atan2 at 0x7fce34b8c220>, <OpOverload(op='aten.clamp_min_', overload='default')>: <function clamp_min at 0x7fce34b8cd60>, <OpOverload(op='aten.bitwise_and_', overload='Tensor')>: <function bitwise_and at 0x7fce34b8c360>, <OpOverload(op='aten.bitwise_and_', overload='Scalar')>: <function bitwise_and at 0x7fce34b8c360>, <OpOverload(op='aten.bitwise_left_shift_', overload='Tensor_Scalar')>: <function bitwise_left_shift at 0x7fce34b8c4a0>, <OpOverload(op='aten.bitwise_left_shift_', overload='Tensor')>: <function bitwise_left_shift at 0x7fce34b8c4a0>, <OpOverload(op='aten.bitwise_not_', overload='default')>: <function bitwise_not at 0x7fce34b8c5e0>, <OpOverload(op='aten.bitwise_or_', overload='Tensor')>: <function bitwise_or at 0x7fce34b8c720>, <OpOverload(op='aten.bitwise_or_', overload='Scalar')>: <function bitwise_or at 0x7fce34b8c720>, <OpOverload(op='aten.clamp_min_', overload='Tensor')>: <function clamp_min at 0x7fce34b8cd60>, <OpOverload(op='aten.bitwise_right_shift_', overload='Tensor_Scalar')>: <function bitwise_right_shift at 0x7fce34b8c860>, <OpOverload(op='aten.bitwise_right_shift_', overload='Tensor')>: <function bitwise_right_shift at 0x7fce34b8c860>, <OpOverload(op='aten.bitwise_xor_', overload='Tensor')>: <function bitwise_xor at 0x7fce34b8c9a0>, <OpOverload(op='aten.bitwise_xor_', overload='Scalar')>: <function bitwise_xor at 0x7fce34b8c9a0>, <OpOverload(op='aten.ceil_', overload='default')>: <function ceil at 0x7fce34b8cae0>, <OpOverload(op='aten.copysign_', overload='Tensor')>: <function copysign at 0x7fce34b5fb00>, <OpOverload(op='aten.clamp_', overload='default')>: <function clamp at 0x7fce34b8cc20>, <OpOverload(op='aten.clamp_', overload='Tensor')>: <function clamp at 0x7fce34b8cc20>, <OpOverload(op='aten.copysign_', overload='Scalar')>: <function copysign at 0x7fce34b5fb00>, <OpOverload(op='aten.cos_', overload='default')>: <function cos at 0x7fce34b5f880>, <OpOverload(op='aten.le_', overload='Tensor')>: <function le at 0x7fce34b5e5c0>, <OpOverload(op='aten.cosh_', overload='default')>: <function cosh at 0x7fce34b5f420>, <OpOverload(op='aten.cumsum_', overload='default')>: <function cumsum at 0x7fce34b5df80>, <OpOverload(op='aten.cumsum_', overload='dimname')>: <function cumsum at 0x7fce34b5df80>, <OpOverload(op='aten.le_', overload='Scalar')>: <function le at 0x7fce34b5e5c0>, <OpOverload(op='aten.cumprod_', overload='default')>: <function cumprod at 0x7fce34b8cea0>, <OpOverload(op='aten.cumprod_', overload='dimname')>: <function cumprod at 0x7fce34b8cea0>, <OpOverload(op='aten.deg2rad_', overload='default')>: <function deg2rad at 0x7fce34b8cf40>, <OpOverload(op='aten.digamma_', overload='default')>: <function digamma at 0x7fce34b8ccc0>, <OpOverload(op='aten.div_', overload='Tensor')>: <function div at 0x7fce34b8ca40>, <OpOverload(op='aten.div_', overload='Tensor_mode')>: <function div at 0x7fce34b8ca40>, <OpOverload(op='aten.div_', overload='Scalar')>: <function div at 0x7fce34b8ca40>, <OpOverload(op='aten.div_', overload='Scalar_mode')>: <function div at 0x7fce34b8ca40>, <OpOverload(op='aten.eq_', overload='Scalar')>: <function eq at 0x7fce34b8c7c0>, <OpOverload(op='aten.eq_', overload='Tensor')>: <function eq at 0x7fce34b8c7c0>, <OpOverload(op='aten.erf_', overload='default')>: <function erf at 0x7fce34b8c540>, <OpOverload(op='aten.erfc_', overload='default')>: <function erfc at 0x7fce34b8c2c0>, <OpOverload(op='aten.lcm_', overload='default')>: <function lcm at 0x7fce34b8e520>, <OpOverload(op='aten.erfinv_', overload='default')>: <function erfinv at 0x7fce34b8c040>, <OpOverload(op='aten.exp_', overload='default')>: <function exp at 0x7fce34b8d120>, <OpOverload(op='aten.exp2_', overload='default')>: <function exp2 at 0x7fce34b8d260>, <OpOverload(op='aten.expm1_', overload='default')>: <function expm1 at 0x7fce34b8d3a0>, <OpOverload(op='aten.float_power_', overload='Tensor')>: <function float_power at 0x7fce34b8d4e0>, <OpOverload(op='aten.float_power_', overload='Scalar')>: <function float_power at 0x7fce34b8d4e0>, <OpOverload(op='aten.log1p_', overload='default')>: <function log1p at 0x7fce34b8e5c0>, <OpOverload(op='aten.floor_', overload='default')>: <function floor at 0x7fce34b8d620>, <OpOverload(op='aten.floor_divide_', overload='Scalar')>: <function floor_divide at 0x7fce34b8d760>, <OpOverload(op='aten.floor_divide_', overload='Tensor')>: <function floor_divide at 0x7fce34b8d760>, <OpOverload(op='aten.fmod_', overload='Tensor')>: <function fmod at 0x7fce34b8d8a0>, <OpOverload(op='aten.fmod_', overload='Scalar')>: <function fmod at 0x7fce34b8d8a0>, <OpOverload(op='aten.frac_', overload='default')>: <function frac at 0x7fce34b8d9e0>, <OpOverload(op='aten.log10_', overload='default')>: <function log10 at 0x7fce34b8e660>, <OpOverload(op='aten.gcd_', overload='default')>: <function gcd at 0x7fce34b8db20>, <OpOverload(op='aten.ge_', overload='Scalar')>: <function ge at 0x7fce34b8dc60>, <OpOverload(op='aten.ge_', overload='Tensor')>: <function ge at 0x7fce34b8dc60>, <OpOverload(op='aten.gt_', overload='Scalar')>: <function gt at 0x7fce34b8dda0>, <OpOverload(op='aten.gt_', overload='Tensor')>: <function gt at 0x7fce34b8dda0>, <OpOverload(op='aten.heaviside_', overload='default')>: <function heaviside at 0x7fce34b8dee0>, <OpOverload(op='aten.lgamma_', overload='default')>: <function lgamma at 0x7fce34b5f9c0>, <OpOverload(op='aten.xlogy_', overload='Tensor')>: <function xlogy at 0x7fce34b8fba0>, <OpOverload(op='aten.hypot_', overload='default')>: <function hypot at 0x7fce34b8e020>, <OpOverload(op='aten.igamma_', overload='default')>: <function igamma at 0x7fce34b8e160>, <OpOverload(op='aten.igammac_', overload='default')>: <function igammac at 0x7fce34b8e2a0>, <OpOverload(op='aten.lerp_', overload='Scalar')>: <function lerp at 0x7fce34b5f6a0>, <OpOverload(op='aten.i0_', overload='default')>: <function i0 at 0x7fce34b8e3e0>, <OpOverload(op='aten.lerp_', overload='Tensor')>: <function lerp at 0x7fce34b5f6a0>, <OpOverload(op='aten.log2_', overload='default')>: <function log2 at 0x7fce34b8e340>, <OpOverload(op='aten.log_', overload='default')>: <function log at 0x7fce34b8e0c0>, <OpOverload(op='aten.logical_and_', overload='default')>: <function logical_and at 0x7fce34b8de40>, <OpOverload(op='aten.logical_not_', overload='default')>: <function logical_not at 0x7fce34b8dbc0>, <OpOverload(op='aten.trunc_', overload='default')>: <function trunc at 0x7fce34b8fe20>, <OpOverload(op='aten.logical_or_', overload='default')>: <function logical_or at 0x7fce34b8d940>, <OpOverload(op='aten.logical_xor_', overload='default')>: <function logical_xor at 0x7fce34b8d6c0>, <OpOverload(op='aten.lt_', overload='Scalar')>: <function lt at 0x7fce34b8d440>, <OpOverload(op='aten.lt_', overload='Tensor')>: <function lt at 0x7fce34b8d440>, <OpOverload(op='aten.mul_', overload='Tensor')>: <function mul at 0x7fce34b8d1c0>, <OpOverload(op='aten.mul_', overload='Scalar')>: <function mul at 0x7fce34b8d1c0>, <OpOverload(op='aten.mvlgamma_', overload='default')>: <function _make_alias.<locals>._fn at 0x7fce34b8c180>, <OpOverload(op='aten.true_divide_', overload='Scalar')>: <function true_divide at 0x7fce34b8ff60>, <OpOverload(op='aten.nan_to_num_', overload='default')>: <function nan_to_num at 0x7fce34b8c680>, <OpOverload(op='aten.true_divide_', overload='Tensor')>: <function true_divide at 0x7fce34b8ff60>, <OpOverload(op='aten.ne_', overload='Scalar')>: <function ne at 0x7fce34b8cb80>, <OpOverload(op='aten.ne_', overload='Tensor')>: <function ne at 0x7fce34b8cb80>, <OpOverload(op='aten.neg_', overload='default')>: <function neg at 0x7fce34b8cfe0>, <OpOverload(op='aten.nextafter_', overload='default')>: <function nextafter at 0x7fce34b8e840>, <OpOverload(op='aten.pow_', overload='Scalar')>: <function pow at 0x7fce34b8e980>, <OpOverload(op='aten.pow_', overload='Tensor')>: <function pow at 0x7fce34b8e980>, <OpOverload(op='aten.triu_', overload='default')>: <function triu at 0x7fce34b8fec0>, <OpOverload(op='aten.rad2deg_', overload='default')>: <function rad2deg at 0x7fce34b8eac0>, <OpOverload(op='aten.reciprocal_', overload='default')>: <function reciprocal at 0x7fce34b8ec00>, <OpOverload(op='aten.remainder_', overload='Tensor')>: <function remainder at 0x7fce34b8ed40>, <OpOverload(op='aten.remainder_', overload='Scalar')>: <function remainder at 0x7fce34b8ed40>, <OpOverload(op='aten.rsqrt_', overload='default')>: <function rsqrt at 0x7fce34b8ee80>, <OpOverload(op='aten.sgn_', overload='default')>: <function sgn at 0x7fce34b8efc0>, <OpOverload(op='aten.sigmoid_', overload='default')>: <function sigmoid at 0x7fce34b8f100>, <OpOverload(op='aten.sign_', overload='default')>: <function sign at 0x7fce34b8f240>, <OpOverload(op='aten.sin_', overload='default')>: <function sin at 0x7fce34b8f380>, <OpOverload(op='aten.tril_', overload='default')>: <function tril at 0x7fce34b8fd80>, <OpOverload(op='aten.sinc_', overload='default')>: <function sinc at 0x7fce34b8f4c0>, <OpOverload(op='aten.geometric_', overload='default')>: <function geometric at 0x7fce34b8f420>, <OpOverload(op='aten.sinh_', overload='default')>: <function sinh at 0x7fce34b8f600>, <OpOverload(op='aten.sqrt_', overload='default')>: <function sqrt at 0x7fce34b8f740>, <OpOverload(op='aten.square_', overload='default')>: <function square at 0x7fce34b8f880>, <OpOverload(op='aten.sub_', overload='Tensor')>: <function sub at 0x7fce34b8f9c0>, <OpOverload(op='aten.sub_', overload='Scalar')>: <function sub at 0x7fce34b8f9c0>, <OpOverload(op='aten.tan_', overload='default')>: <function tan at 0x7fce34b8fb00>, <OpOverload(op='aten.exponential_', overload='default')>: <function exponential at 0x7fce34b8f6a0>, <OpOverload(op='aten.tanh_', overload='default')>: <function tanh at 0x7fce34b8fc40>, <OpOverload(op='aten.cauchy_', overload='default')>: <function cauchy at 0x7fce34b8f920>, <OpOverload(op='aten.log_normal_', overload='default')>: <function log_normal at 0x7fce34b8f1a0>, <OpOverload(op='aten.zero_', overload='default')>: <function zero at 0x7fce34b8ef20>, <OpOverload(op='aten.alias_copy', overload='default')>: <function PyCapsule.alias at 0x7fce34b8ea20>, <OpOverload(op='aten.alias_copy', overload='out')>: <function PyCapsule.alias at 0x7fce34b8ea20>, <OpOverload(op='aten.as_strided_copy', overload='default')>: <function PyCapsule.as_strided at 0x7fce34b8c900>, <OpOverload(op='aten.as_strided_copy', overload='out')>: <function PyCapsule.as_strided at 0x7fce34b8c900>, <OpOverload(op='aten.transpose_copy', overload='int_out')>: <function PyCapsule.transpose at 0x7fce34b8e200>, <OpOverload(op='aten.diagonal_copy', overload='default')>: <function PyCapsule.diagonal at 0x7fce34b8d580>, <OpOverload(op='aten.diagonal_copy', overload='out')>: <function PyCapsule.diagonal at 0x7fce34b8d580>, <OpOverload(op='aten.expand_copy', overload='default')>: <function PyCapsule.expand at 0x7fce34b8df80>, <OpOverload(op='aten.expand_copy', overload='out')>: <function PyCapsule.expand at 0x7fce34b8df80>, <OpOverload(op='aten.transpose_copy', overload='int')>: <function PyCapsule.transpose at 0x7fce34b8e200>, <OpOverload(op='aten.narrow_copy', overload='default')>: <function PyCapsule.narrow at 0x7fce34b5fc40>, <OpOverload(op='aten.narrow_copy', overload='out')>: <function PyCapsule.narrow at 0x7fce34b5fc40>, <OpOverload(op='aten.squeeze_copy', overload='default')>: <function PyCapsule.squeeze at 0x7fce34bcc180>, <OpOverload(op='aten.squeeze_copy', overload='dim')>: <function PyCapsule.squeeze at 0x7fce34bcc180>, <OpOverload(op='aten.squeeze_copy', overload='dims')>: <function PyCapsule.squeeze at 0x7fce34bcc180>, <OpOverload(op='aten.squeeze_copy', overload='out')>: <function PyCapsule.squeeze at 0x7fce34bcc180>, <OpOverload(op='aten.squeeze_copy', overload='dim_out')>: <function PyCapsule.squeeze at 0x7fce34bcc180>, <OpOverload(op='aten.squeeze_copy', overload='dims_out')>: <function PyCapsule.squeeze at 0x7fce34bcc180>, <OpOverload(op='aten.permute_copy', overload='default')>: <function PyCapsule.permute at 0x7fce34bcc400>, <OpOverload(op='aten.permute_copy', overload='out')>: <function PyCapsule.permute at 0x7fce34bcc400>, <OpOverload(op='aten.fft_rfft', overload='out')>: <function rfft at 0x7fce34bceac0>, <OpOverload(op='aten.t_copy', overload='default')>: <function PyCapsule.t at 0x7fce34bcc680>, <OpOverload(op='aten.t_copy', overload='out')>: <function PyCapsule.t at 0x7fce34bcc680>, <OpOverload(op='aten.unsqueeze_copy', overload='default')>: <function PyCapsule.unsqueeze at 0x7fce34b8c400>, <OpOverload(op='aten.unsqueeze_copy', overload='out')>: <function PyCapsule.unsqueeze at 0x7fce34b8c400>, <OpOverload(op='aten.fft_ifft2', overload='out')>: <function ifft2 at 0x7fce34bfcc20>, <OpOverload(op='aten.view_copy', overload='default')>: <function PyCapsule.view at 0x7fce34b8f060>, <OpOverload(op='aten.view_copy', overload='dtype')>: <function PyCapsule.view at 0x7fce34b8f060>, <OpOverload(op='aten.view_copy', overload='out')>: <function PyCapsule.view at 0x7fce34b8f060>, <OpOverload(op='aten.view_copy', overload='dtype_out')>: <function PyCapsule.view at 0x7fce34b8f060>, <OpOverload(op='aten.complex', overload='default')>: <function complex at 0x7fce34bcd8a0>, <OpOverload(op='aten.complex', overload='out')>: <function complex at 0x7fce34bcd8a0>, <OpOverload(op='aten.polar', overload='default')>: <function polar at 0x7fce34bcdb20>, <OpOverload(op='aten.polar', overload='out')>: <function polar at 0x7fce34bcdb20>, <OpOverload(op='aten.fft_fft', overload='default')>: <function fft at 0x7fce34bce5c0>, <OpOverload(op='aten.fft_fft', overload='out')>: <function fft at 0x7fce34bce5c0>, <OpOverload(op='aten.fft_ifft', overload='default')>: <function ifft at 0x7fce34bce840>, <OpOverload(op='aten.fft_ifft', overload='out')>: <function ifft at 0x7fce34bce840>, <OpOverload(op='aten.fft_rfft', overload='default')>: <function rfft at 0x7fce34bceac0>, <OpOverload(op='aten.fft_irfft', overload='default')>: <function irfft at 0x7fce34bcea20>, <OpOverload(op='aten.fft_irfft', overload='out')>: <function irfft at 0x7fce34bcea20>, <OpOverload(op='aten.fft_ifft2', overload='default')>: <function ifft2 at 0x7fce34bfcc20>, <OpOverload(op='aten.fft_hfft', overload='default')>: <function hfft at 0x7fce34bcd800>, <OpOverload(op='aten.fft_hfft', overload='out')>: <function hfft at 0x7fce34bcd800>, <OpOverload(op='aten.fft_ihfft', overload='default')>: <function ihfft at 0x7fce34bced40>, <OpOverload(op='aten.fft_ihfft', overload='out')>: <function ihfft at 0x7fce34bced40>, <OpOverload(op='aten.fft_fftn', overload='default')>: <function fftn at 0x7fce34bcf600>, <OpOverload(op='aten.fft_fftn', overload='out')>: <function fftn at 0x7fce34bcf600>, <OpOverload(op='aten.fft_ifftn', overload='default')>: <function ifftn at 0x7fce34bcf880>, <OpOverload(op='aten.fft_ifftn', overload='out')>: <function ifftn at 0x7fce34bcf880>, <OpOverload(op='aten.fft_rfftn', overload='default')>: <function rfftn at 0x7fce34bcfb00>, <OpOverload(op='aten.fft_rfftn', overload='out')>: <function rfftn at 0x7fce34bcfb00>, <OpOverload(op='aten.fft_ihfftn', overload='default')>: <function ihfftn at 0x7fce34bcfd80>, <OpOverload(op='aten.fft_ihfftn', overload='out')>: <function ihfftn at 0x7fce34bcfd80>, <OpOverload(op='aten.fft_irfftn', overload='default')>: <function irfftn at 0x7fce34bfc4a0>, <OpOverload(op='aten.fft_irfftn', overload='out')>: <function irfftn at 0x7fce34bfc4a0>, <OpOverload(op='aten.fft_hfftn', overload='default')>: <function hfftn at 0x7fce34bfc720>, <OpOverload(op='aten.fft_hfftn', overload='out')>: <function hfftn at 0x7fce34bfc720>, <OpOverload(op='aten.fft_fft2', overload='default')>: <function fft2 at 0x7fce34bfc9a0>, <OpOverload(op='aten.fft_fft2', overload='out')>: <function fft2 at 0x7fce34bfc9a0>, <OpOverload(op='aten.fft_rfft2', overload='default')>: <function rfft2 at 0x7fce34bcda80>, <OpOverload(op='aten.fft_rfft2', overload='out')>: <function rfft2 at 0x7fce34bcda80>, <OpOverload(op='aten.fft_irfft2', overload='default')>: <function irfft2 at 0x7fce34bfccc0>, <OpOverload(op='aten.fft_irfft2', overload='out')>: <function irfft2 at 0x7fce34bfccc0>, <OpOverload(op='aten.fft_hfft2', overload='default')>: <function hfft2 at 0x7fce34bfc400>, <OpOverload(op='aten.fft_hfft2', overload='out')>: <function hfft2 at 0x7fce34bfc400>, <OpOverload(op='aten.fft_ihfft2', overload='default')>: <function ihfft2 at 0x7fce34bfcf40>, <OpOverload(op='aten.fft_ihfft2', overload='out')>: <function ihfft2 at 0x7fce34bfcf40>, <OpOverload(op='aten.fft_fftshift', overload='default')>: <function fftshift at 0x7fce34bfcfe0>, <OpOverload(op='aten.fft_ifftshift', overload='default')>: <function ifftshift at 0x7fce34bfd080>, <OpOverload(op='aten.linalg_cross', overload='default')>: <function cross at 0x7fce34bfd760>, <OpOverload(op='aten.linalg_cross', overload='out')>: <function cross at 0x7fce34bfd760>, <OpOverload(op='aten.linalg_vector_norm', overload='default')>: <function vector_norm at 0x7fce34bfda80>, <OpOverload(op='aten.linalg_vector_norm', overload='out')>: <function vector_norm at 0x7fce34bfda80>, <OpOverload(op='aten.alpha_dropout', overload='default')>: <function alpha_dropout at 0x7fce34bfd120>, <OpOverload(op='aten.is_complex', overload='default')>: <function is_complex at 0x7fce34c59580>, <OpOverload(op='aten.erfinv', overload='default')>: <function erfinv at 0x7fce34c594e0>, <OpOverload(op='aten.erfinv', overload='out')>: <function erfinv at 0x7fce34c594e0>, <OpOverload(op='aten.zero', overload='default')>: <function zero at 0x7fce34c6c220>, <OpOverload(op='aten.zero', overload='out')>: <function zero at 0x7fce34c6c220>, <OpOverload(op='aten.frac', overload='default')>: <function frac at 0x7fce34c6cae0>, <OpOverload(op='aten.frac', overload='out')>: <function frac at 0x7fce34c6cae0>, <OpOverload(op='aten.isneginf', overload='out')>: <function isneginf at 0x7fce34c5b880>, <OpOverload(op='aten.isinf', overload='default')>: <function isinf at 0x7fce34c6d3a0>, <OpOverload(op='aten.isinf', overload='out')>: <function isinf at 0x7fce34c6d3a0>, <OpOverload(op='aten.isposinf', overload='default')>: <function isposinf at 0x7fce34c6d800>, <OpOverload(op='aten.isposinf', overload='out')>: <function isposinf at 0x7fce34c6d800>, <OpOverload(op='aten.isneginf', overload='default')>: <function isneginf at 0x7fce34c5b880>, <OpOverload(op='aten.isnan', overload='default')>: <function isnan at 0x7fce34c6cb80>, <OpOverload(op='aten.isnan', overload='out')>: <function isnan at 0x7fce34c6cb80>, <OpOverload(op='aten.i0', overload='default')>: <function i0 at 0x7fce34c6e2a0>, <OpOverload(op='aten.i0', overload='out')>: <function i0 at 0x7fce34c6e2a0>, <OpOverload(op='aten.logsumexp', overload='default')>: <function logsumexp at 0x7fce34c6fd80>, <OpOverload(op='aten.logsumexp', overload='names')>: <function logsumexp at 0x7fce34c6fd80>, <OpOverload(op='aten.logsumexp', overload='names_out')>: <function logsumexp at 0x7fce34c6fd80>, <OpOverload(op='aten.logsumexp', overload='out')>: <function logsumexp at 0x7fce34c6fd80>, <OpOverload(op='aten.nan_to_num', overload='default')>: <function nan_to_num at 0x7fce34c6ff60>, <OpOverload(op='aten.nan_to_num', overload='out')>: <function nan_to_num at 0x7fce34c6ff60>, <OpOverload(op='aten.sigmoid', overload='default')>: <function sigmoid at 0x7fce34c88fe0>, <OpOverload(op='aten.sigmoid', overload='out')>: <function sigmoid at 0x7fce34c88fe0>, <OpOverload(op='aten.sgn', overload='default')>: <function sgn at 0x7fce34c89440>, <OpOverload(op='aten.sgn', overload='out')>: <function sgn at 0x7fce34c89440>, <OpOverload(op='aten.sinc', overload='default')>: <function sinc at 0x7fce34c8a5c0>, <OpOverload(op='aten.sinc', overload='out')>: <function sinc at 0x7fce34c8a5c0>, <OpOverload(op='aten.bitwise_left_shift', overload='Tensor')>: <function bitwise_left_shift at 0x7fce34c98720>, <OpOverload(op='aten.bitwise_left_shift', overload='Tensor_Scalar')>: <function bitwise_left_shift at 0x7fce34c98720>, <OpOverload(op='aten.bitwise_left_shift', overload='Scalar_Tensor')>: <function bitwise_left_shift at 0x7fce34c98720>, <OpOverload(op='aten.bitwise_left_shift', overload='Tensor_out')>: <function bitwise_left_shift at 0x7fce34c98720>, <OpOverload(op='aten.bitwise_left_shift', overload='Tensor_Scalar_out')>: <function bitwise_left_shift at 0x7fce34c98720>, <OpOverload(op='aten.bitwise_left_shift', overload='Scalar_Tensor_out')>: <function bitwise_left_shift at 0x7fce34c98720>, <OpOverload(op='aten.bitwise_right_shift', overload='Tensor')>: <function bitwise_right_shift at 0x7fce34c98ea0>, <OpOverload(op='aten.bitwise_right_shift', overload='Tensor_Scalar')>: <function bitwise_right_shift at 0x7fce34c98ea0>, <OpOverload(op='aten.bitwise_right_shift', overload='Scalar_Tensor')>: <function bitwise_right_shift at 0x7fce34c98ea0>, <OpOverload(op='aten.bitwise_right_shift', overload='Tensor_out')>: <function bitwise_right_shift at 0x7fce34c98ea0>, <OpOverload(op='aten.bitwise_right_shift', overload='Tensor_Scalar_out')>: <function bitwise_right_shift at 0x7fce34c98ea0>, <OpOverload(op='aten.bitwise_right_shift', overload='Scalar_Tensor_out')>: <function bitwise_right_shift at 0x7fce34c98ea0>, <OpOverload(op='aten.copysign', overload='Tensor')>: <function copysign at 0x7fce34c99620>, <OpOverload(op='aten.copysign', overload='Scalar')>: <function copysign at 0x7fce34c99620>, <OpOverload(op='aten.copysign', overload='out')>: <function copysign at 0x7fce34c99620>, <OpOverload(op='aten.copysign', overload='Scalar_out')>: <function copysign at 0x7fce34c99620>, <OpOverload(op='aten.heaviside', overload='default')>: <function heaviside at 0x7fce34cb8180>, <OpOverload(op='aten.heaviside', overload='out')>: <function heaviside at 0x7fce34cb8180>, <OpOverload(op='aten.lcm', overload='default')>: <function lcm at 0x7fce34cb8220>, <OpOverload(op='aten.lcm', overload='out')>: <function lcm at 0x7fce34cb8220>, <OpOverload(op='aten.logaddexp', overload='default')>: <function logaddexp at 0x7fce34cb91c0>, <OpOverload(op='aten.logaddexp', overload='out')>: <function logaddexp at 0x7fce34cb91c0>, <OpOverload(op='aten.logaddexp2', overload='default')>: <function logaddexp2 at 0x7fce34cb9580>, <OpOverload(op='aten.logaddexp2', overload='out')>: <function logaddexp2 at 0x7fce34cb9580>, <OpOverload(op='aten.logical_and', overload='default')>: <function logical_and at 0x7fce34cb9940>, <OpOverload(op='aten.logical_and', overload='out')>: <function logical_and at 0x7fce34cb9940>, <OpOverload(op='aten.logical_not', overload='default')>: <function logical_not at 0x7fce34cb9da0>, <OpOverload(op='aten.logical_not', overload='out')>: <function logical_not at 0x7fce34cb9da0>, <OpOverload(op='aten.logical_or', overload='default')>: <function logical_or at 0x7fce34cba160>, <OpOverload(op='aten.logical_or', overload='out')>: <function logical_or at 0x7fce34cba160>, <OpOverload(op='aten.logical_xor', overload='default')>: <function logical_xor at 0x7fce34cba520>, <OpOverload(op='aten.logical_xor', overload='out')>: <function logical_xor at 0x7fce34cba520>, <OpOverload(op='aten.rsub', overload='Tensor')>: <function rsub at 0x7fce34cbbb00>, <OpOverload(op='aten.rsub', overload='Scalar')>: <function rsub at 0x7fce34cbbb00>, <OpOverload(op='aten.rsub', overload='Tensor_out')>: <function rsub at 0x7fce34cbbb00>, <OpOverload(op='aten.rsub', overload='Scalar_out')>: <function rsub at 0x7fce34cbbb00>, <OpOverload(op='aten.clamp', overload='Tensor_out')>: <function clamp at 0x7fce34cd5120>, <OpOverload(op='aten.xlogy', overload='Tensor')>: <function xlogy at 0x7fce34cd44a0>, <OpOverload(op='aten.xlogy', overload='Scalar_Other')>: <function xlogy at 0x7fce34cd44a0>, <OpOverload(op='aten.xlogy', overload='Scalar_Self')>: <function xlogy at 0x7fce34cd44a0>, <OpOverload(op='aten.xlogy', overload='OutTensor')>: <function xlogy at 0x7fce34cd44a0>, <OpOverload(op='aten.xlogy', overload='OutScalar_Self')>: <function xlogy at 0x7fce34cd44a0>, <OpOverload(op='aten.xlogy', overload='OutScalar_Other')>: <function xlogy at 0x7fce34cd44a0>, <OpOverload(op='aten.clamp', overload='out')>: <function clamp at 0x7fce34cd5120>, <OpOverload(op='aten.addcdiv', overload='default')>: <function addcdiv at 0x7fce34cd4ae0>, <OpOverload(op='aten.addcdiv', overload='out')>: <function addcdiv at 0x7fce34cd4ae0>, <OpOverload(op='aten.addcmul', overload='default')>: <function addcmul at 0x7fce34cd4e00>, <OpOverload(op='aten.addcmul', overload='out')>: <function addcmul at 0x7fce34cd4e00>, <OpOverload(op='aten.mean', overload='dim')>: <function mean at 0x7fce34cd6c00>, <OpOverload(op='aten.clamp', overload='default')>: <function clamp at 0x7fce34cd5120>, <OpOverload(op='aten.clamp', overload='Tensor')>: <function clamp at 0x7fce34cd5120>, <OpOverload(op='aten.clamp_min', overload='default')>: <function clamp_min at 0x7fce34cbb1a0>, <OpOverload(op='aten.clamp_min', overload='Tensor')>: <function clamp_min at 0x7fce34cbb1a0>, <OpOverload(op='aten.clamp_min', overload='out')>: <function clamp_min at 0x7fce34cbb1a0>, <OpOverload(op='aten.clamp_min', overload='Tensor_out')>: <function clamp_min at 0x7fce34cbb1a0>, <OpOverload(op='aten.mean', overload='default')>: <function mean at 0x7fce34cd6c00>, <OpOverload(op='aten.clamp_max', overload='default')>: <function clamp_max at 0x7fce34cd51c0>, <OpOverload(op='aten.clamp_max', overload='Tensor')>: <function clamp_max at 0x7fce34cd51c0>, <OpOverload(op='aten.clamp_max', overload='out')>: <function clamp_max at 0x7fce34cd51c0>, <OpOverload(op='aten.clamp_max', overload='Tensor_out')>: <function clamp_max at 0x7fce34cd51c0>, <OpOverload(op='aten.std', overload='correction_names')>: <function std at 0x7fce34cd7240>, <OpOverload(op='aten.std', overload='correction_names_out')>: <function std at 0x7fce34cd7240>, <OpOverload(op='aten.all', overload='default')>: <function all at 0x7fce34cd6480>, <OpOverload(op='aten.all', overload='dim')>: <function all at 0x7fce34cd6480>, <OpOverload(op='aten.all', overload='dims')>: <function all at 0x7fce34cd6480>, <OpOverload(op='aten.all', overload='out')>: <function all at 0x7fce34cd6480>, <OpOverload(op='aten.all', overload='dims_out')>: <function all at 0x7fce34cd6480>, <OpOverload(op='aten.all', overload='all_out')>: <function all at 0x7fce34cd6480>, <OpOverload(op='aten.all', overload='dimname')>: <function all at 0x7fce34cd6480>, <OpOverload(op='aten.all', overload='dimname_out')>: <function all at 0x7fce34cd6480>, <OpOverload(op='aten.std', overload='correction_out')>: <function std at 0x7fce34cd7240>, <OpOverload(op='aten.any', overload='default')>: <function any at 0x7fce34cd6700>, <OpOverload(op='aten.any', overload='dim')>: <function any at 0x7fce34cd6700>, <OpOverload(op='aten.any', overload='dims')>: <function any at 0x7fce34cd6700>, <OpOverload(op='aten.any', overload='out')>: <function any at 0x7fce34cd6700>, <OpOverload(op='aten.any', overload='dims_out')>: <function any at 0x7fce34cd6700>, <OpOverload(op='aten.any', overload='all_out')>: <function any at 0x7fce34cd6700>, <OpOverload(op='aten.any', overload='dimname')>: <function any at 0x7fce34cd6700>, <OpOverload(op='aten.any', overload='dimname_out')>: <function any at 0x7fce34cd6700>, <OpOverload(op='aten.std', overload='out')>: <function std at 0x7fce34cd7240>, <OpOverload(op='aten.std', overload='names_out')>: <function std at 0x7fce34cd7240>, <OpOverload(op='aten.std', overload='correction')>: <function std at 0x7fce34cd7240>, <OpOverload(op='aten.std', overload='names_dim')>: <function std at 0x7fce34cd7240>, <OpOverload(op='aten.std', overload='default')>: <function std at 0x7fce34cd7240>, <OpOverload(op='aten.std', overload='dim')>: <function std at 0x7fce34cd7240>, <OpOverload(op='aten.mean', overload='names_dim')>: <function mean at 0x7fce34cd6c00>, <OpOverload(op='aten.mean', overload='names_out')>: <function mean at 0x7fce34cd6c00>, <OpOverload(op='aten.mean', overload='out')>: <function mean at 0x7fce34cd6c00>, <OpOverload(op='aten.mean', overload='dtype_out')>: <function mean at 0x7fce34cd6c00>, <OpOverload(op='aten.std_mean', overload='default')>: <function std_mean at 0x7fce34cd5440>, <OpOverload(op='aten.std_mean', overload='dim')>: <function std_mean at 0x7fce34cd5440>, <OpOverload(op='aten.std_mean', overload='correction')>: <function std_mean at 0x7fce34cd5440>, <OpOverload(op='aten.std_mean', overload='names_dim')>: <function std_mean at 0x7fce34cd5440>, <OpOverload(op='aten.std_mean', overload='correction_names')>: <function std_mean at 0x7fce34cd5440>, <OpOverload(op='aten.std_mean', overload='correction_out')>: <function std_mean at 0x7fce34cd5440>, <OpOverload(op='aten.var_mean', overload='default')>: <function var_mean at 0x7fce34cd77e0>, <OpOverload(op='aten.var_mean', overload='dim')>: <function var_mean at 0x7fce34cd77e0>, <OpOverload(op='aten.var_mean', overload='correction')>: <function var_mean at 0x7fce34cd77e0>, <OpOverload(op='aten.var_mean', overload='names_dim')>: <function var_mean at 0x7fce34cd77e0>, <OpOverload(op='aten.var_mean', overload='correction_names')>: <function var_mean at 0x7fce34cd77e0>, <OpOverload(op='aten.var_mean', overload='correction_out')>: <function var_mean at 0x7fce34cd77e0>, <OpOverload(op='aten.addr', overload='default')>: <function addr at 0x7fce34cd7c40>, <OpOverload(op='aten.addr', overload='out')>: <function addr at 0x7fce34cd7c40>, <OpOverload(op='aten.constant_pad_nd', overload='default')>: <function constant_pad_nd at 0x7fce34d10cc0>, <OpOverload(op='aten.constant_pad_nd', overload='out')>: <function constant_pad_nd at 0x7fce34d10cc0>, <OpOverload(op='aten.index_fill', overload='Dimname_Tensor')>: <function index_fill at 0x7fce34d13c40>, <OpOverload(op='aten.native_group_norm', overload='default')>: <function native_group_norm at 0x7fce34d11300>, <OpOverload(op='aten.expand', overload='default')>: <function expand at 0x7fce34d10ea0>, <OpOverload(op='aten.flip', overload='default')>: <function flip at 0x7fce34d11260>, <OpOverload(op='aten.flip', overload='out')>: <function flip at 0x7fce34d11260>, <OpOverload(op='aten.index_fill', overload='Dimname_Scalar')>: <function index_fill at 0x7fce34d13c40>, <OpOverload(op='aten.native_layer_norm', overload='default')>: <function native_layer_norm at 0x7fce34d119e0>, <OpOverload(op='aten.native_layer_norm', overload='out')>: <function native_layer_norm at 0x7fce34d119e0>, <OpOverload(op='aten.index_fill', overload='int_Scalar')>: <function index_fill at 0x7fce34d13c40>, <OpOverload(op='aten.permute', overload='default')>: <function permute at 0x7fce34d11bc0>, <OpOverload(op='aten.index_fill', overload='int_Tensor')>: <function index_fill at 0x7fce34d13c40>, <OpOverload(op='aten.silu_backward', overload='default')>: <function silu_backward at 0x7fce34d20680>, <OpOverload(op='aten.silu_backward', overload='grad_input')>: <function silu_backward at 0x7fce34d20680>, <OpOverload(op='aten._prelu_kernel', overload='default')>: <function _prelu_kernel at 0x7fce34d209a0>, <OpOverload(op='aten._prelu_kernel_backward', overload='default')>: <function _prelu_kernel_backward at 0x7fce34d20a40>, <OpOverload(op='aten.log_sigmoid_backward', overload='default')>: <function log_sigmoid_backward at 0x7fce34ee77e0>, <OpOverload(op='aten.log_sigmoid_backward', overload='grad_input')>: <function log_sigmoid_backward at 0x7fce34ee77e0>, <OpOverload(op='aten.mse_loss', overload='default')>: <function mse_loss at 0x7fce34d20040>, <OpOverload(op='aten.mse_loss', overload='out')>: <function mse_loss at 0x7fce34d20040>, <OpOverload(op='aten.mse_loss_backward', overload='default')>: <function mse_loss_backward at 0x7fce34d20fe0>, <OpOverload(op='aten.mse_loss_backward', overload='grad_input')>: <function mse_loss_backward at 0x7fce34d20fe0>, <OpOverload(op='aten._safe_softmax', overload='default')>: <function safe_softmax at 0x7fce34d21300>, <OpOverload(op='aten.smooth_l1_loss_backward', overload='default')>: <function smooth_l1_loss_backward at 0x7fce34d21800>, <OpOverload(op='aten.smooth_l1_loss', overload='default')>: <function smooth_l1_loss at 0x7fce34d21760>, <OpOverload(op='aten.smooth_l1_loss_backward', overload='grad_input')>: <function smooth_l1_loss_backward_out at 0x7fce34d219e0>, <OpOverload(op='aten.smooth_l1_loss', overload='out')>: <function smooth_l1_loss at 0x7fce34d21760>, <OpOverload(op='aten.binary_cross_entropy_backward', overload='grad_input')>: <function binary_cross_entropy_backward at 0x7fce34d22d40>, <OpOverload(op='aten.huber_loss_backward', overload='default')>: <function huber_loss_backward at 0x7fce34d21bc0>, <OpOverload(op='aten.huber_loss_backward', overload='out')>: <function huber_loss_backward_out at 0x7fce34d21da0>, <OpOverload(op='aten.binary_cross_entropy_backward', overload='default')>: <function binary_cross_entropy_backward at 0x7fce34d22d40>, <OpOverload(op='aten.glu_backward', overload='default')>: <function glu_backward at 0x7fce34d22020>, <OpOverload(op='aten.glu_backward', overload='grad_input')>: <function glu_backward at 0x7fce34d22020>, <OpOverload(op='aten.nll_loss_backward', overload='default')>: <function nll_loss_backward at 0x7fce34d223e0>, <OpOverload(op='aten.nll_loss_backward', overload='grad_input')>: <function nll_loss_backward at 0x7fce34d223e0>, <OpOverload(op='aten.nll_loss2d_backward', overload='default')>: <function nll_loss2d_backward at 0x7fce34d22700>, <OpOverload(op='aten.nll_loss2d_backward', overload='grad_input')>: <function nll_loss2d_backward at 0x7fce34d22700>, <OpOverload(op='aten.binary_cross_entropy', overload='default')>: <function binary_cross_entropy at 0x7fce34d22ca0>, <OpOverload(op='aten.binary_cross_entropy', overload='out')>: <function binary_cross_entropy at 0x7fce34d22ca0>, <OpOverload(op='aten.soft_margin_loss', overload='default')>: <function soft_margin_loss at 0x7fce34d21940>, <OpOverload(op='aten.soft_margin_loss', overload='out')>: <function soft_margin_loss at 0x7fce34d21940>, <OpOverload(op='aten.soft_margin_loss_backward', overload='default')>: <function soft_margin_loss_backward at 0x7fce34d216c0>, <OpOverload(op='aten.soft_margin_loss_backward', overload='grad_input')>: <function soft_margin_loss_backward at 0x7fce34d216c0>, <OpOverload(op='aten.dist', overload='default')>: <function dist at 0x7fce34d231a0>, <OpOverload(op='aten.dist', overload='out')>: <function dist at 0x7fce34d231a0>, <OpOverload(op='aten._euclidean_dist', overload='default')>: <function _euclidean_dist at 0x7fce34d23420>, <OpOverload(op='aten._euclidean_dist', overload='out')>: <function _euclidean_dist at 0x7fce34d23420>, <OpOverload(op='aten.slice_backward', overload='out')>: <function slice_backward at 0x7fce34d236a0>, <OpOverload(op='aten.select_backward', overload='default')>: <function select_backward at 0x7fce34d23d80>, <OpOverload(op='aten.col2im', overload='out')>: <function col2im at 0x7fce34d23ce0>, <OpOverload(op='aten.diagonal_backward', overload='default')>: <function diagonal_backward at 0x7fce34d23f60>, <OpOverload(op='aten.diagonal_backward', overload='out')>: <function diagonal_backward at 0x7fce34d23f60>, <OpOverload(op='aten.col2im', overload='default')>: <function col2im at 0x7fce34d23ce0>, <OpOverload(op='aten._softmax_backward_data', overload='default')>: <function _softmax_backward_data at 0x7fce34d48180>, <OpOverload(op='aten._softmax_backward_data', overload='out')>: <function _softmax_backward_data at 0x7fce34d48180>, <OpOverload(op='aten._log_softmax_backward_data', overload='default')>: <function _log_softmax_backward_data at 0x7fce34d487c0>, <OpOverload(op='aten._log_softmax_backward_data', overload='out')>: <function _log_softmax_backward_data at 0x7fce34d487c0>, <OpOverload(op='aten.im2col', overload='default')>: <function im2col at 0x7fce34d48ae0>, <OpOverload(op='aten.im2col', overload='out')>: <function im2col at 0x7fce34d48ae0>, <OpOverload(op='aten.logit_backward', overload='default')>: <function logit_backward at 0x7fce34d48720>, <OpOverload(op='aten.native_dropout_backward', overload='default')>: <function native_dropout_backward at 0x7fce34d21b20>, <OpOverload(op='aten.native_dropout_backward', overload='out')>: <function native_dropout_backward at 0x7fce34d21b20>, <OpOverload(op='aten.unfold_backward', overload='default')>: <function unfold_backward at 0x7fce34d48a40>, <OpOverload(op='aten.unfold_backward', overload='out')>: <function unfold_backward at 0x7fce34d48a40>, <OpOverload(op='aten.dropout', overload='default')>: <function dropout at 0x7fce34d48e00>, <OpOverload(op='aten.addmm', overload='out')>: <function addmm at 0x7fce34d4ade0>, <OpOverload(op='aten.native_dropout', overload='default')>: <function native_dropout at 0x7fce34d494e0>, <OpOverload(op='aten.native_dropout', overload='out')>: <function native_dropout at 0x7fce34d494e0>, <OpOverload(op='aten._softmax', overload='default')>: <function _softmax at 0x7fce34d498a0>, <OpOverload(op='aten._softmax', overload='out')>: <function _softmax at 0x7fce34d498a0>, <OpOverload(op='aten._log_softmax', overload='default')>: <function _log_softmax at 0x7fce34d49b20>, <OpOverload(op='aten._log_softmax', overload='out')>: <function _log_softmax at 0x7fce34d49b20>, <OpOverload(op='aten._addmm_activation', overload='out')>: <function _addmm_activation at 0x7fce34d4a840>, <OpOverload(op='aten.embedding', overload='default')>: <function embedding at 0x7fce34d49da0>, <OpOverload(op='aten.embedding', overload='out')>: <function embedding at 0x7fce34d49da0>, <OpOverload(op='aten._chunk_cat', overload='default')>: <function _chunk_cat at 0x7fce34d4a340>, <OpOverload(op='aten._addmm_activation', overload='default')>: <function _addmm_activation at 0x7fce34d4a840>, <OpOverload(op='aten._chunk_cat', overload='out')>: <function _chunk_cat at 0x7fce34d4a340>, <OpOverload(op='aten.embedding_dense_backward', overload='default')>: <function embedding_dense_backward at 0x7fce34d4a020>, <OpOverload(op='aten.embedding_dense_backward', overload='out')>: <function embedding_dense_backward at 0x7fce34d4a020>, <OpOverload(op='aten.split_with_sizes_copy', overload='default')>: <function split_with_sizes_copy at 0x7fce34d4a3e0>, <OpOverload(op='aten.split_with_sizes_copy', overload='out')>: <function split_with_sizes_copy at 0x7fce34d4a3e0>, <OpOverload(op='aten.unsafe_split', overload='Tensor')>: <function unsafe_split at 0x7fce34d4a520>, <OpOverload(op='aten.unsafe_split_with_sizes', overload='default')>: <function unsafe_split_with_sizes at 0x7fce34d4a660>, <OpOverload(op='aten.split', overload='Tensor')>: <function split at 0x7fce34d4a7a0>, <OpOverload(op='aten.addmm', overload='default')>: <function addmm at 0x7fce34d4ade0>, <OpOverload(op='aten.native_group_norm_backward', overload='default')>: <function native_group_norm_backward at 0x7fce34d49a80>, <OpOverload(op='aten.addmv', overload='default')>: <function addmv at 0x7fce34d49d00>, <OpOverload(op='aten.native_group_norm_backward', overload='out')>: <function native_group_norm_backward_out at 0x7fce34d49800>, <OpOverload(op='aten.addmv', overload='out')>: <function addmv at 0x7fce34d49d00>, <OpOverload(op='aten.native_layer_norm_backward', overload='default')>: <function native_layer_norm_backward at 0x7fce34d48b80>, <OpOverload(op='aten.native_layer_norm_backward', overload='out')>: <function native_layer_norm_backward_out at 0x7fce34d4ae80>, <OpOverload(op='aten.native_batch_norm', overload='default')>: <function native_batch_norm at 0x7fce34d4b6a0>, <OpOverload(op='aten.native_batch_norm', overload='out')>: <function native_batch_norm at 0x7fce34d4b6a0>, <OpOverload(op='aten._native_batch_norm_legit_no_training', overload='default')>: <function _native_batch_norm_legit_no_training at 0x7fce34d4ba60>, <OpOverload(op='aten._native_batch_norm_legit', overload='default')>: <function _native_batch_norm_legit at 0x7fce34d4bb00>, <OpOverload(op='aten.batch_norm_backward', overload='default')>: <function batch_norm_backward at 0x7fce34d70e00>, <OpOverload(op='aten._native_batch_norm_legit', overload='no_stats')>: <function _native_batch_norm_legit_no_stats at 0x7fce34d4bc40>, <OpOverload(op='aten._native_batch_norm_legit_functional', overload='default')>: <function _native_batch_norm_legit_functional at 0x7fce34d4bd80>, <OpOverload(op='aten.cudnn_batch_norm', overload='default')>: <function cudnn_batch_norm at 0x7fce34d4bce0>, <OpOverload(op='aten._batch_norm_with_update', overload='default')>: <function _batch_norm_with_update at 0x7fce34d70040>, <OpOverload(op='aten._batch_norm_with_update_functional', overload='default')>: <function _batch_norm_with_update_functional at 0x7fce34d700e0>, <OpOverload(op='aten._batch_norm_no_update', overload='default')>: <function _batch_norm_no_update at 0x7fce34d70220>, <OpOverload(op='aten.lift', overload='out')>: <function nop_decomposition at 0x7fce34d71120>, <OpOverload(op='aten._fused_dropout', overload='default')>: <function _fused_dropout_decomposition at 0x7fce34d70ae0>, <OpOverload(op='aten._fused_dropout', overload='out')>: <function _fused_dropout_decomposition at 0x7fce34d70ae0>, <OpOverload(op='aten._to_copy', overload='default')>: <function _to_copy at 0x7fce34d70ea0>, <OpOverload(op='aten._to_copy', overload='out')>: <function _to_copy at 0x7fce34d70ea0>, <OpOverload(op='aten.lift', overload='default')>: <function nop_decomposition at 0x7fce34d71120>, <OpOverload(op='aten.index_copy', overload='dimname')>: <function index_copy at 0x7fce34d72840>, <OpOverload(op='aten.cudnn_batch_norm', overload='out')>: <function cudnn_batch_norm at 0x7fce34d4bce0>, <OpOverload(op='aten.native_batch_norm_backward', overload='default')>: <function native_batch_norm_backward at 0x7fce34d70c20>, <OpOverload(op='aten.native_batch_norm_backward', overload='out')>: <function native_batch_norm_backward_out at 0x7fce34d702c0>, <OpOverload(op='aten.index_copy', overload='default')>: <function index_copy at 0x7fce34d72840>, <OpOverload(op='aten.miopen_batch_norm_backward', overload='default')>: <function miopen_batch_norm_backward at 0x7fce34d71800>, <OpOverload(op='aten.miopen_batch_norm_backward', overload='out')>: <function miopen_batch_norm_backward at 0x7fce34d71800>, <OpOverload(op='aten.cudnn_batch_norm_backward', overload='default')>: <function cudnn_batch_norm_backward at 0x7fce34d71ee0>, <OpOverload(op='aten.cudnn_batch_norm_backward', overload='out')>: <function cudnn_batch_norm_backward at 0x7fce34d71ee0>, <OpOverload(op='aten._adaptive_avg_pool2d', overload='default')>: <function adaptive_avg_pool2d at 0x7fce34d72340>, <OpOverload(op='aten._adaptive_avg_pool2d', overload='out')>: <function adaptive_avg_pool2d at 0x7fce34d72340>, <OpOverload(op='aten.max_unpool2d', overload='default')>: <function max_unpool2d at 0x7fce34d72660>, <OpOverload(op='aten.max_unpool2d', overload='out')>: <function max_unpool2d at 0x7fce34d72660>, <OpOverload(op='aten.max_unpool3d', overload='default')>: <function max_unpool3d at 0x7fce34d728e0>, <OpOverload(op='aten.max_unpool3d', overload='out')>: <function max_unpool3d at 0x7fce34d728e0>, <OpOverload(op='aten.index_add_', overload='default')>: <function index_add_ at 0x7fce34d72700>, <OpOverload(op='aten.pad_sequence', overload='default')>: <function pad_sequence at 0x7fce34d72de0>, <OpOverload(op='aten.index_add', overload='default')>: <function index_add at 0x7fce34d72ca0>, <OpOverload(op='aten.index_add', overload='out')>: <function index_add at 0x7fce34d72ca0>, <OpOverload(op='aten.index_add', overload='dimname')>: <function index_add at 0x7fce34d72ca0>, <OpOverload(op='aten.index_copy', overload='out')>: <function index_copy at 0x7fce34d72840>, <OpOverload(op='aten.index_copy_', overload='default')>: <function index_copy_ at 0x7fce34d72d40>, <OpOverload(op='aten.index_copy_', overload='dimname')>: <function index_copy_ at 0x7fce34d72d40>, <OpOverload(op='aten.log_sigmoid_forward', overload='default')>: <function log_sigmoid_forward at 0x7fce34d731a0>, <OpOverload(op='aten.log_sigmoid_forward', overload='output')>: <function log_sigmoid_forward at 0x7fce34d731a0>, <OpOverload(op='aten.gru', overload='input')>: <function gru_impl at 0x7fce34d9e340>, <OpOverload(op='aten.upsample_nearest1d', overload='vec')>: <function _upsample_nearest_vec at 0x7fce34d73ce0>, <OpOverload(op='aten.uniform_', overload='default')>: <function uniform_ at 0x7fce34d73380>, <OpOverload(op='aten.upsample_nearest2d', overload='vec')>: <function _upsample_nearest_vec at 0x7fce34d73ce0>, <OpOverload(op='aten._upsample_nearest_exact1d', overload='vec')>: <function _upsample_nearest_exact_vec at 0x7fce34d9c180>, <OpOverload(op='aten.gru', overload='data')>: <function gru_impl_data at 0x7fce34d9e160>, <OpOverload(op='aten.upsample_nearest3d', overload='vec')>: <function _upsample_nearest_vec at 0x7fce34d73ce0>, <OpOverload(op='aten.upsample_nearest1d', overload='default')>: <function upsample_nearest1d at 0x7fce34d9c540>, <OpOverload(op='aten._upsample_nearest_exact2d', overload='vec')>: <function _upsample_nearest_exact_vec at 0x7fce34d9c180>, <OpOverload(op='aten._upsample_nearest_exact3d', overload='vec')>: <function _upsample_nearest_exact_vec at 0x7fce34d9c180>, <OpOverload(op='aten.upsample_nearest1d', overload='out')>: <function upsample_nearest1d at 0x7fce34d9c540>, <OpOverload(op='aten._upsample_nearest_exact1d', overload='default')>: <function upsample_nearest_exact1d at 0x7fce34d9c860>, <OpOverload(op='aten._upsample_nearest_exact1d', overload='out')>: <function upsample_nearest_exact1d at 0x7fce34d9c860>, <OpOverload(op='aten.lstm', overload='data')>: <function lstm_data_impl at 0x7fce34d9de40>, <OpOverload(op='aten.upsample_nearest2d', overload='default')>: <function upsample_nearest2d at 0x7fce34d9cb80>, <OpOverload(op='aten.lstm', overload='input')>: <function lstm_impl at 0x7fce34d9c7c0>, <OpOverload(op='aten.upsample_nearest2d', overload='out')>: <function upsample_nearest2d at 0x7fce34d9cb80>, <OpOverload(op='aten._upsample_nearest_exact2d', overload='default')>: <function _upsample_nearest_exact2d at 0x7fce34d9cea0>, <OpOverload(op='aten._upsample_nearest_exact2d', overload='out')>: <function _upsample_nearest_exact2d at 0x7fce34d9cea0>, <OpOverload(op='aten.upsample_nearest3d', overload='default')>: <function upsample_nearest3d at 0x7fce34d9d1c0>, <OpOverload(op='aten.upsample_nearest3d', overload='out')>: <function upsample_nearest3d at 0x7fce34d9d1c0>, <OpOverload(op='aten._upsample_nearest_exact3d', overload='default')>: <function _upsample_nearest_exact3d at 0x7fce34d9d4e0>, <OpOverload(op='aten._upsample_nearest_exact3d', overload='out')>: <function _upsample_nearest_exact3d at 0x7fce34d9d4e0>, <OpOverload(op='aten.rnn_tanh', overload='input')>: <function rnn_tanh_input at 0x7fce34d9dd00>, <OpOverload(op='aten.rnn_relu', overload='input')>: <function rnn_relu_input at 0x7fce34d73c40>, <OpOverload(op='aten.rnn_relu', overload='data')>: <function rnn_relu_data at 0x7fce34d736a0>, <OpOverload(op='aten.rnn_tanh', overload='data')>: <function rnn_tanh_data at 0x7fce34d72a20>, <OpOverload(op='aten._upsample_bilinear2d_aa', overload='vec')>: <function upsample_bilinear2d_aa_vec at 0x7fce34d9e520>, <OpOverload(op='aten.affine_grid_generator', overload='default')>: <function affine_grid_generator at 0x7fce34db4ae0>, <OpOverload(op='aten._upsample_bicubic2d_aa', overload='vec')>: <function upsample_bicubic2d_aa_vec at 0x7fce34d9e700>, <OpOverload(op='aten.upsample_bilinear2d', overload='vec')>: <function _upsample_linear_vec at 0x7fce34d9ec00>, <OpOverload(op='aten.upsample_linear1d', overload='default')>: <function upsample_linear1d at 0x7fce34d9ede0>, <OpOverload(op='aten.upsample_trilinear3d', overload='vec')>: <function _upsample_linear_vec at 0x7fce34d9ec00>, <OpOverload(op='aten.upsample_linear1d', overload='out')>: <function upsample_linear1d at 0x7fce34d9ede0>, <OpOverload(op='aten.upsample_bilinear2d', overload='default')>: <function upsample_bilinear2d at 0x7fce34d9f100>, <OpOverload(op='aten.upsample_bilinear2d', overload='out')>: <function upsample_bilinear2d at 0x7fce34d9f100>, <OpOverload(op='aten.upsample_trilinear3d', overload='default')>: <function upsample_trilinear3d at 0x7fce34d9f380>, <OpOverload(op='aten.upsample_trilinear3d', overload='out')>: <function upsample_trilinear3d at 0x7fce34d9f380>, <OpOverload(op='aten.is_same_size', overload='default')>: <function is_same_size at 0x7fce34d9f740>, <OpOverload(op='aten._reshape_alias', overload='default')>: <function _reshape_alias at 0x7fce34d9fb00>, <OpOverload(op='aten._unsafe_view', overload='default')>: <function _reshape_alias at 0x7fce34d9fb00>, <OpOverload(op='aten._unsafe_view', overload='out')>: <function _reshape_alias at 0x7fce34d9fb00>, <OpOverload(op='aten._unsafe_index', overload='Tensor')>: <function _unsafe_index at 0x7fce34d9f920>, <OpOverload(op='aten._unsafe_masked_index', overload='default')>: <function _unsafe_masked_index at 0x7fce34d9fce0>, <OpOverload(op='aten._unsafe_masked_index_put_accumulate', overload='default')>: <function _unsafe_masked_index_put_accumulate at 0x7fce34d9fe20>, <OpOverload(op='aten.nll_loss2d_forward', overload='output')>: <function nll_loss2d_forward at 0x7fce34d9e840>, <OpOverload(op='aten.nll_loss2d_forward', overload='default')>: <function nll_loss2d_forward at 0x7fce34d9e840>, <OpOverload(op='aten.nll_loss_forward', overload='default')>: <function nll_loss_forward at 0x7fce34db4680>, <OpOverload(op='aten.nll_loss_forward', overload='output')>: <function nll_loss_forward at 0x7fce34db4680>, <OpOverload(op='aten.affine_grid_generator', overload='out')>: <function affine_grid_generator at 0x7fce34db4ae0>, <OpOverload(op='aten.grid_sampler_2d', overload='default')>: <function grid_sampler_2d at 0x7fce34db4ea0>, <OpOverload(op='aten.grid_sampler_2d', overload='out')>: <function grid_sampler_2d at 0x7fce34db4ea0>, <OpOverload(op='aten._weight_norm_interface', overload='out')>: <function _weight_norm_interface at 0x7fce34de4a40>, <OpOverload(op='aten.mv', overload='default')>: <function mv at 0x7fce34db51c0>, <OpOverload(op='aten.mv', overload='out')>: <function mv at 0x7fce34db51c0>, <OpOverload(op='aten.binary_cross_entropy_with_logits', overload='default')>: <function binary_cross_entropy_with_logits at 0x7fce34db5440>, <OpOverload(op='aten.binary_cross_entropy_with_logits', overload='out')>: <function binary_cross_entropy_with_logits at 0x7fce34db5440>, <OpOverload(op='aten.upsample_bicubic2d', overload='default')>: <function upsample_bicubic2d_default at 0x7fce34db5bc0>, <OpOverload(op='aten.upsample_bicubic2d', overload='out')>: <function upsample_bicubic2d_default at 0x7fce34db5bc0>, <OpOverload(op='aten.upsample_bicubic2d', overload='vec')>: <function upsample_bicubic2d_vec at 0x7fce34db6020>, <OpOverload(op='aten.reflection_pad3d', overload='default')>: <function _reflection_pad at 0x7fce34db6160>, <OpOverload(op='aten.reflection_pad3d', overload='out')>: <function _reflection_pad at 0x7fce34db6160>, <OpOverload(op='aten.reflection_pad2d', overload='default')>: <function _reflection_pad at 0x7fce34db6160>, <OpOverload(op='aten.reflection_pad2d', overload='out')>: <function _reflection_pad at 0x7fce34db6160>, <OpOverload(op='aten.reflection_pad1d', overload='default')>: <function _reflection_pad at 0x7fce34db6160>, <OpOverload(op='aten.reflection_pad1d', overload='out')>: <function _reflection_pad at 0x7fce34db6160>, <OpOverload(op='aten.replication_pad3d', overload='default')>: <function _replication_pad at 0x7fce34db65c0>, <OpOverload(op='aten.replication_pad3d', overload='out')>: <function _replication_pad at 0x7fce34db65c0>, <OpOverload(op='aten.replication_pad2d', overload='default')>: <function _replication_pad at 0x7fce34db65c0>, <OpOverload(op='aten.replication_pad2d', overload='out')>: <function _replication_pad at 0x7fce34db65c0>, <OpOverload(op='aten.replication_pad1d', overload='default')>: <function _replication_pad at 0x7fce34db65c0>, <OpOverload(op='aten.replication_pad1d', overload='out')>: <function _replication_pad at 0x7fce34db65c0>, <OpOverload(op='aten.reflection_pad3d_backward', overload='default')>: <function _reflection_pad_backward at 0x7fce34db6700>, <OpOverload(op='aten.reflection_pad3d_backward', overload='grad_input')>: <function _reflection_pad_backward at 0x7fce34db6700>, <OpOverload(op='aten.reflection_pad2d_backward', overload='default')>: <function _reflection_pad_backward at 0x7fce34db62a0>, <OpOverload(op='aten.reflection_pad2d_backward', overload='grad_input')>: <function _reflection_pad_backward at 0x7fce34db62a0>, <OpOverload(op='aten.reflection_pad1d_backward', overload='default')>: <function _reflection_pad_backward at 0x7fce34db62a0>, <OpOverload(op='aten.reflection_pad1d_backward', overload='grad_input')>: <function _reflection_pad_backward at 0x7fce34db62a0>, <OpOverload(op='aten.aminmax', overload='default')>: <function aminmax at 0x7fce34db6ac0>, <OpOverload(op='aten.aminmax', overload='out')>: <function aminmax at 0x7fce34db6ac0>, <OpOverload(op='aten.arange', overload='default')>: <function arange_default at 0x7fce34db7100>, <OpOverload(op='aten.nansum', overload='default')>: <function nansum at 0x7fce34db6e80>, <OpOverload(op='aten.arange', overload='out')>: <function arange_default at 0x7fce34db7100>, <OpOverload(op='aten.nansum', overload='out')>: <function nansum at 0x7fce34db6e80>, <OpOverload(op='aten.arange', overload='start')>: <function arange_start at 0x7fce34db6f20>, <OpOverload(op='aten.multi_margin_loss', overload='default')>: <function multi_margin_loss at 0x7fce34db7740>, <OpOverload(op='aten.multi_margin_loss', overload='out')>: <function multi_margin_loss at 0x7fce34db7740>, <OpOverload(op='aten.multilabel_margin_loss_forward', overload='default')>: <function multilabel_margin_loss_forward at 0x7fce34db7e20>, <OpOverload(op='aten._scaled_dot_product_flash_attention_for_cpu', overload='default')>: <function scaled_dot_product_flash_attention_for_cpu at 0x7fce34db72e0>, <OpOverload(op='aten.multilabel_margin_loss_forward', overload='output')>: <function multilabel_margin_loss_forward at 0x7fce34db7e20>, <OpOverload(op='aten.isin', overload='Scalar_Tensor')>: <function isin at 0x7fce34db6de0>, <OpOverload(op='aten.isin', overload='Tensor_Scalar_out')>: <function isin at 0x7fce34db6de0>, <OpOverload(op='aten.bernoulli', overload='default')>: <function bernoulli at 0x7fce34db7380>, <OpOverload(op='aten.baddbmm', overload='default')>: <function baddbmm at 0x7fce34de44a0>, <OpOverload(op='aten.baddbmm', overload='out')>: <function baddbmm at 0x7fce34de44a0>, <OpOverload(op='aten.isin', overload='Tensor_Scalar')>: <function isin at 0x7fce34db6de0>, <OpOverload(op='aten.isin', overload='Tensor_Tensor_out')>: <function isin at 0x7fce34db6de0>, <OpOverload(op='aten.floor_divide', overload='default')>: <function floor_divide at 0x7fce34de4720>, <OpOverload(op='aten.floor_divide', overload='Scalar')>: <function floor_divide at 0x7fce34de4720>, <OpOverload(op='aten.floor_divide', overload='out')>: <function floor_divide at 0x7fce34de4720>, <OpOverload(op='aten.floor_divide', overload='Scalar_out')>: <function floor_divide at 0x7fce34de4720>, <OpOverload(op='aten.isin', overload='Tensor_Tensor')>: <function isin at 0x7fce34db6de0>, <OpOverload(op='aten._weight_norm_interface', overload='default')>: <function _weight_norm_interface at 0x7fce34de4a40>, <OpOverload(op='aten.isin', overload='Scalar_Tensor_out')>: <function isin at 0x7fce34db6de0>, <OpOverload(op='aten.take', overload='default')>: <function take at 0x7fce34de4c20>, <OpOverload(op='aten.take', overload='out')>: <function take at 0x7fce34de4c20>, <OpOverload(op='aten.resize_as', overload='default')>: <function resize_as at 0x7fce34de4040>, <OpOverload(op='aten.resize_as', overload='out')>: <function resize_as at 0x7fce34de4040>, <OpOverload(op='aten.addbmm_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de4ae0>, <OpOverload(op='aten.addmm_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de4860>, <OpOverload(op='aten.addmv_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de4400>, <OpOverload(op='aten.round_', overload='decimals')>: <function register_inplace.<locals>.inplace_op at 0x7fce34db68e0>, <OpOverload(op='aten.baddbmm_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de4d60>, <OpOverload(op='aten.round_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34db68e0>, <OpOverload(op='aten.fill_', overload='Scalar')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de4ea0>, <OpOverload(op='aten.fill_', overload='Tensor')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de4ea0>, <OpOverload(op='aten.gelu_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de4fe0>, <OpOverload(op='aten.hardswish_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5120>, <OpOverload(op='aten.hardtanh_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5260>, <OpOverload(op='aten.hardsigmoid_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de53a0>, <OpOverload(op='aten.__iand__', overload='Tensor')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de54e0>, <OpOverload(op='aten.__iand__', overload='Scalar')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de54e0>, <OpOverload(op='aten.renorm_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de6160>, <OpOverload(op='aten.__ilshift__', overload='Tensor')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5620>, <OpOverload(op='aten.__ilshift__', overload='Scalar')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5620>, <OpOverload(op='aten.index_reduce_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de58a0>, <OpOverload(op='aten.__ior__', overload='Tensor')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de59e0>, <OpOverload(op='aten.__ior__', overload='Scalar')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de59e0>, <OpOverload(op='aten.scatter_', overload='value_reduce')>: <function register_inplace.<locals>.inplace_op at 0x7fce34db7060>, <OpOverload(op='aten.__irshift__', overload='Tensor')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5b20>, <OpOverload(op='aten.__irshift__', overload='Scalar')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5b20>, <OpOverload(op='aten.__ixor__', overload='Tensor')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5c60>, <OpOverload(op='aten.__ixor__', overload='Scalar')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5c60>, <OpOverload(op='aten.scatter_', overload='reduce')>: <function register_inplace.<locals>.inplace_op at 0x7fce34db7060>, <OpOverload(op='aten.leaky_relu_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5da0>, <OpOverload(op='aten.logit_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5ee0>, <OpOverload(op='aten.relu_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de6020>, <OpOverload(op='aten.scatter_', overload='src')>: <function register_inplace.<locals>.inplace_op at 0x7fce34db7060>, <OpOverload(op='aten.scatter_', overload='value')>: <function register_inplace.<locals>.inplace_op at 0x7fce34db7060>, <OpOverload(op='aten.scatter_add_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de6340>, <OpOverload(op='aten.scatter_reduce_', overload='two')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de60c0>, <OpOverload(op='aten.silu_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5e40>, <OpOverload(op='aten.as_strided_scatter', overload='out')>: <function as_strided_scatter at 0x7fce34d10220>, <OpOverload(op='aten.tanh_backward', overload='default')>: <function tanh_backward at 0x7fce34ee5940>, <OpOverload(op='aten.cat', overload='default')>: <function cat at 0x7fce34d107c0>, <OpOverload(op='aten.cat', overload='names')>: <function cat at 0x7fce34d107c0>, <OpOverload(op='aten.cat', overload='names_out')>: <function cat at 0x7fce34d107c0>, <OpOverload(op='aten.cat', overload='out')>: <function cat at 0x7fce34d107c0>, <OpOverload(op='aten.where', overload='ScalarSelf')>: <function where at 0x7fce34cd5260>, <OpOverload(op='aten.where', overload='self')>: <function where at 0x7fce34cd5260>, <OpOverload(op='aten.where', overload='Scalar')>: <function where at 0x7fce34cd5260>, <OpOverload(op='aten.where', overload='default')>: <function where at 0x7fce34cd5260>, <OpOverload(op='aten.where', overload='self_out')>: <function where at 0x7fce34cd5260>, <OpOverload(op='aten.where', overload='ScalarOther')>: <function where at 0x7fce34cd5260>, <OpOverload(op='aten.sum', overload='dim_IntList')>: <function sum at 0x7fce34cd6520>, <OpOverload(op='aten.sum', overload='default')>: <function sum_default at 0x7fce34de47c0>, <OpOverload(op='aten.sum', overload='IntList_out')>: <function sum at 0x7fce34cd6520>, <OpOverload(op='aten.sum', overload='out')>: <function sum_default at 0x7fce34de47c0>, <OpOverload(op='aten.prod', overload='default')>: <function prod at 0x7fce34cd68e0>, <OpOverload(op='aten.prod', overload='dim_int')>: <function prod at 0x7fce34cd68e0>, <OpOverload(op='aten.prod', overload='dim_Dimname')>: <function prod at 0x7fce34cd68e0>, <OpOverload(op='aten.prod', overload='Dimname_out')>: <function prod at 0x7fce34cd68e0>, <OpOverload(op='aten.prod', overload='int_out')>: <function prod at 0x7fce34cd68e0>, <OpOverload(op='aten.var', overload='default')>: <function var at 0x7fce34cd6fc0>, <OpOverload(op='aten.prod', overload='out')>: <function prod at 0x7fce34cd68e0>, <OpOverload(op='aten.var', overload='dim')>: <function var at 0x7fce34cd6fc0>, <OpOverload(op='aten.var', overload='correction')>: <function var at 0x7fce34cd6fc0>, <OpOverload(op='aten.var', overload='names_dim')>: <function var at 0x7fce34cd6fc0>, <OpOverload(op='aten.var', overload='names_out')>: <function var at 0x7fce34cd6fc0>, <OpOverload(op='aten.var', overload='out')>: <function var at 0x7fce34cd6fc0>, <OpOverload(op='aten.var', overload='correction_out')>: <function var at 0x7fce34cd6fc0>, <OpOverload(op='aten.var', overload='correction_names')>: <function var at 0x7fce34cd6fc0>, <OpOverload(op='aten.var', overload='correction_names_out')>: <function var at 0x7fce34cd6fc0>, <OpOverload(op='aten.amax', overload='default')>: <function amax at 0x7fce34cd6ac0>, <OpOverload(op='aten.amax', overload='out')>: <function amax at 0x7fce34cd6ac0>, <OpOverload(op='aten.amin', overload='default')>: <function amin at 0x7fce34cd6980>, <OpOverload(op='aten.amin', overload='out')>: <function amin at 0x7fce34cd6980>, <OpOverload(op='aten.empty_strided', overload='out')>: <function empty_strided at 0x7fce34b320c0>, <OpOverload(op='aten.full', overload='default')>: <function full at 0x7fce34b339c0>, <OpOverload(op='aten.full', overload='out')>: <function full at 0x7fce34b339c0>, <OpOverload(op='aten.normal', overload='Tensor_float')>: <function normal at 0x7fce34b5e700>, <OpOverload(op='aten.normal', overload='Tensor_float_out')>: <function normal at 0x7fce34b5e700>, <OpOverload(op='aten.normal', overload='Tensor_Tensor')>: <function normal at 0x7fce34b5e700>, <OpOverload(op='aten.normal', overload='Tensor_Tensor_out')>: <function normal at 0x7fce34b5e700>, <OpOverload(op='aten.normal', overload='float_float')>: <function normal at 0x7fce34b5e700>, <OpOverload(op='aten.normal', overload='float_float_out')>: <function normal at 0x7fce34b5e700>, <OpOverload(op='aten.normal', overload='float_Tensor_out')>: <function normal at 0x7fce34b5e700>, <OpOverload(op='aten.normal', overload='out')>: <function normal at 0x7fce34b5e700>, <OpOverload(op='aten.normal', overload='float_Tensor')>: <function normal at 0x7fce34b5e700>, <OpOverload(op='aten.uniform', overload='default')>: <function uniform at 0x7fce34d73560>, <OpOverload(op='aten.uniform', overload='out')>: <function uniform at 0x7fce34d73560>, <OpOverload(op='aten.frexp', overload='Tensor')>: <function frexp at 0x7fce34c9b100>, <OpOverload(op='aten.frexp', overload='Tensor_out')>: <function frexp at 0x7fce34c9b100>, <OpOverload(op='aten.sigmoid_backward', overload='default')>: <function sigmoid_backward at 0x7fce34ee5da0>, <OpOverload(op='aten.sigmoid_backward', overload='grad_input')>: <function sigmoid_backward at 0x7fce34ee5da0>, <OpOverload(op='aten.softplus_backward', overload='default')>: <function softplus_backward at 0x7fce34ee6160>, <OpOverload(op='aten.softplus_backward', overload='grad_input')>: <function softplus_backward at 0x7fce34ee6160>, <OpOverload(op='aten.elu_backward', overload='default')>: <function elu_backward at 0x7fce34ee5d00>, <OpOverload(op='aten.elu_backward', overload='grad_input')>: <function elu_backward at 0x7fce34ee5d00>, <OpOverload(op='aten.hardsigmoid', overload='default')>: <function hardsigmoid at 0x7fce34ee6d40>, <OpOverload(op='aten.hardsigmoid', overload='out')>: <function hardsigmoid at 0x7fce34ee6d40>, <OpOverload(op='aten.hardsigmoid_backward', overload='default')>: <function hardsigmoid_backward at 0x7fce34ee6de0>, <OpOverload(op='aten.hardsigmoid_backward', overload='grad_input')>: <function hardsigmoid_backward at 0x7fce34ee6de0>, <OpOverload(op='aten.hardtanh_backward', overload='default')>: <function hardtanh_backward at 0x7fce34ee6340>, <OpOverload(op='aten.hardtanh_backward', overload='grad_input')>: <function hardtanh_backward at 0x7fce34ee6340>, <OpOverload(op='aten.hardswish', overload='default')>: <function hardswish at 0x7fce34ee72e0>, <OpOverload(op='aten.hardswish', overload='out')>: <function hardswish at 0x7fce34ee72e0>, <OpOverload(op='aten.hardswish_backward', overload='default')>: <function hardswish_backward at 0x7fce34ee7600>, <OpOverload(op='aten.hardswish_backward', overload='out')>: <function hardswish_backward at 0x7fce34ee7600>, <OpOverload(op='aten.threshold_backward', overload='default')>: <function threshold_backward at 0x7fce34ee76a0>, <OpOverload(op='aten.threshold_backward', overload='grad_input')>: <function threshold_backward at 0x7fce34ee76a0>, <OpOverload(op='aten.leaky_relu_backward', overload='default')>: <function leaky_relu_backward at 0x7fce34ee79c0>, <OpOverload(op='aten.leaky_relu_backward', overload='grad_input')>: <function leaky_relu_backward at 0x7fce34ee79c0>, <OpOverload(op='aten.gelu_backward', overload='default')>: <function gelu_backward at 0x7fce34ee7d80>, <OpOverload(op='aten.gelu_backward', overload='grad_input')>: <function gelu_backward at 0x7fce34ee7d80>, <OpOverload(op='aten.mish_backward', overload='default')>: <function mish_backward at 0x7fce34d20180>, <OpOverload(op='aten.rrelu_with_noise_backward', overload='out')>: <function rrelu_with_noise_backward at 0x7fce34d20f40>, <OpOverload(op='aten.silu', overload='default')>: <function silu at 0x7fce34d205e0>, <OpOverload(op='aten.silu', overload='out')>: <function silu at 0x7fce34d205e0>, <OpOverload(op='aten.rrelu_with_noise_backward', overload='default')>: <function rrelu_with_noise_backward at 0x7fce34d20f40>, <OpOverload(op='aten.sin', overload='out')>: <function sin at 0x7fce34c8a160>, <OpOverload(op='aten.sinh', overload='default')>: <function sinh at 0x7fce34c8aa20>, <OpOverload(op='aten.sinh', overload='out')>: <function sinh at 0x7fce34c8aa20>, <OpOverload(op='aten.sqrt', overload='default')>: <function sqrt at 0x7fce34c8ae80>, <OpOverload(op='aten.sqrt', overload='out')>: <function sqrt at 0x7fce34c8ae80>, <OpOverload(op='aten.tan', overload='default')>: <function tan at 0x7fce34c8b6a0>, <OpOverload(op='aten.tan', overload='out')>: <function tan at 0x7fce34c8b6a0>, <OpOverload(op='aten.tanh', overload='default')>: <function tanh at 0x7fce34c8bb00>, <OpOverload(op='aten.tanh', overload='out')>: <function tanh at 0x7fce34c8bb00>, <OpOverload(op='aten.trunc', overload='default')>: <function trunc at 0x7fce34c8a660>, <OpOverload(op='aten.trunc', overload='out')>: <function trunc at 0x7fce34c8a660>, <OpOverload(op='aten.add', overload='Tensor')>: <function add at 0x7fce34c88360>, <OpOverload(op='aten.add', overload='Scalar_out')>: <function add at 0x7fce34c88360>, <OpOverload(op='aten.add', overload='out')>: <function add at 0x7fce34c88360>, <OpOverload(op='aten.add', overload='Scalar')>: <function add at 0x7fce34c88360>, <OpOverload(op='aten.atan2', overload='default')>: <function atan2 at 0x7fce34c8bf60>, <OpOverload(op='aten.atan2', overload='out')>: <function atan2 at 0x7fce34c8bf60>, <OpOverload(op='aten.bitwise_and', overload='Tensor')>: <function bitwise_and at 0x7fce34c98360>, <OpOverload(op='aten.bitwise_and', overload='Scalar')>: <function bitwise_and at 0x7fce34c98360>, <OpOverload(op='aten.bitwise_and', overload='Tensor_out')>: <function bitwise_and at 0x7fce34c98360>, <OpOverload(op='aten.bitwise_and', overload='Scalar_out')>: <function bitwise_and at 0x7fce34c98360>, <OpOverload(op='aten.bitwise_and', overload='Scalar_Tensor_out')>: <function bitwise_and at 0x7fce34c98360>, <OpOverload(op='aten.bitwise_or', overload='Tensor')>: <function bitwise_or at 0x7fce34c98ae0>, <OpOverload(op='aten.bitwise_and', overload='Scalar_Tensor')>: <function bitwise_and at 0x7fce34c98360>, <OpOverload(op='aten.bitwise_or', overload='Scalar')>: <function bitwise_or at 0x7fce34c98ae0>, <OpOverload(op='aten.bitwise_or', overload='Scalar_Tensor')>: <function bitwise_or at 0x7fce34c98ae0>, <OpOverload(op='aten.bitwise_or', overload='Tensor_out')>: <function bitwise_or at 0x7fce34c98ae0>, <OpOverload(op='aten.bitwise_or', overload='Scalar_out')>: <function bitwise_or at 0x7fce34c98ae0>, <OpOverload(op='aten.bitwise_or', overload='Scalar_Tensor_out')>: <function bitwise_or at 0x7fce34c98ae0>, <OpOverload(op='aten.bitwise_xor', overload='Tensor')>: <function bitwise_xor at 0x7fce34c99260>, <OpOverload(op='aten.bitwise_xor', overload='Scalar')>: <function bitwise_xor at 0x7fce34c99260>, <OpOverload(op='aten.bitwise_xor', overload='Tensor_out')>: <function bitwise_xor at 0x7fce34c99260>, <OpOverload(op='aten.bitwise_xor', overload='Scalar_out')>: <function bitwise_xor at 0x7fce34c99260>, <OpOverload(op='aten.bitwise_xor', overload='Scalar_Tensor_out')>: <function bitwise_xor at 0x7fce34c99260>, <OpOverload(op='aten.bitwise_xor', overload='Scalar_Tensor')>: <function bitwise_xor at 0x7fce34c99260>, <OpOverload(op='aten.div', overload='Tensor')>: <function div at 0x7fce34c998a0>, <OpOverload(op='aten.div', overload='Scalar')>: <function div at 0x7fce34c998a0>, <OpOverload(op='aten.div', overload='Tensor_mode')>: <function div at 0x7fce34c998a0>, <OpOverload(op='aten.div', overload='Scalar_mode')>: <function div at 0x7fce34c998a0>, <OpOverload(op='aten.div', overload='out')>: <function div at 0x7fce34c998a0>, <OpOverload(op='aten.div', overload='out_mode')>: <function div at 0x7fce34c998a0>, <OpOverload(op='aten.div', overload='Scalar_mode_out')>: <function div at 0x7fce34c998a0>, <OpOverload(op='aten.div', overload='Scalar_out')>: <function div at 0x7fce34c998a0>, <OpOverload(op='aten.eq', overload='Tensor')>: <function eq at 0x7fce34c89080>, <OpOverload(op='aten.eq', overload='Scalar')>: <function eq at 0x7fce34c89080>, <OpOverload(op='aten.eq', overload='Scalar_out')>: <function eq at 0x7fce34c89080>, <OpOverload(op='aten.eq', overload='Tensor_out')>: <function eq at 0x7fce34c89080>, <OpOverload(op='aten.fmax', overload='default')>: <function fmax at 0x7fce34c9a3e0>, <OpOverload(op='aten.fmax', overload='out')>: <function fmax at 0x7fce34c9a3e0>, <OpOverload(op='aten.fmin', overload='default')>: <function fmin at 0x7fce34c9a7a0>, <OpOverload(op='aten.fmin', overload='out')>: <function fmin at 0x7fce34c9a7a0>, <OpOverload(op='aten.fmod', overload='Tensor')>: <function fmod at 0x7fce34c9ab60>, <OpOverload(op='aten.fmod', overload='Scalar')>: <function fmod at 0x7fce34c9ab60>, <OpOverload(op='aten.fmod', overload='Tensor_out')>: <function fmod at 0x7fce34c9ab60>, <OpOverload(op='aten.fmod', overload='Scalar_out')>: <function fmod at 0x7fce34c9ab60>, <OpOverload(op='aten.gcd', overload='default')>: <function gcd at 0x7fce34c9b600>, <OpOverload(op='aten.ge', overload='Tensor')>: <function ge at 0x7fce34c9b9c0>, <OpOverload(op='aten.gcd', overload='out')>: <function gcd at 0x7fce34c9b600>, <OpOverload(op='aten.ge', overload='Scalar')>: <function ge at 0x7fce34c9b9c0>, <OpOverload(op='aten.ge', overload='Scalar_out')>: <function ge at 0x7fce34c9b9c0>, <OpOverload(op='aten.ge', overload='Tensor_out')>: <function ge at 0x7fce34c9b9c0>, <OpOverload(op='aten.gt', overload='Tensor')>: <function gt at 0x7fce34c9bd80>, <OpOverload(op='aten.gt', overload='Scalar')>: <function gt at 0x7fce34c9bd80>, <OpOverload(op='aten.gt', overload='Tensor_out')>: <function gt at 0x7fce34c9bd80>, <OpOverload(op='aten.gt', overload='Scalar_out')>: <function gt at 0x7fce34c9bd80>, <OpOverload(op='aten.hypot', overload='default')>: <function hypot at 0x7fce34cb8540>, <OpOverload(op='aten.hypot', overload='out')>: <function hypot at 0x7fce34cb8540>, <OpOverload(op='aten.igamma', overload='default')>: <function igamma at 0x7fce34cb8900>, <OpOverload(op='aten.igamma', overload='out')>: <function igamma at 0x7fce34cb8900>, <OpOverload(op='aten.igammac', overload='default')>: <function igammac at 0x7fce34c9b240>, <OpOverload(op='aten.igammac', overload='out')>: <function igammac at 0x7fce34c9b240>, <OpOverload(op='aten.le', overload='Tensor')>: <function le at 0x7fce34cb8e00>, <OpOverload(op='aten.le', overload='Scalar')>: <function le at 0x7fce34cb8e00>, <OpOverload(op='aten.le', overload='Tensor_out')>: <function le at 0x7fce34cb8e00>, <OpOverload(op='aten.le', overload='Scalar_out')>: <function le at 0x7fce34cb8e00>, <OpOverload(op='aten.lt', overload='Tensor')>: <function lt at 0x7fce34cba8e0>, <OpOverload(op='aten.lt', overload='Scalar')>: <function lt at 0x7fce34cba8e0>, <OpOverload(op='aten.lt', overload='Scalar_out')>: <function lt at 0x7fce34cba8e0>, <OpOverload(op='aten.lt', overload='Tensor_out')>: <function lt at 0x7fce34cba8e0>, <OpOverload(op='aten.maximum', overload='default')>: <function maximum at 0x7fce34cbaca0>, <OpOverload(op='aten.maximum', overload='out')>: <function maximum at 0x7fce34cbaca0>, <OpOverload(op='aten.minimum', overload='out')>: <function minimum at 0x7fce34cbb060>, <OpOverload(op='aten.minimum', overload='default')>: <function minimum at 0x7fce34cbb060>, <OpOverload(op='aten.mul', overload='Tensor')>: <function mul at 0x7fce34cb99e0>, <OpOverload(op='aten.mul', overload='Scalar')>: <function mul at 0x7fce34cb99e0>, <OpOverload(op='aten.mul', overload='Scalar_out')>: <function mul at 0x7fce34cb99e0>, <OpOverload(op='aten.mul', overload='out')>: <function mul at 0x7fce34cb99e0>, <OpOverload(op='aten.ne', overload='Tensor')>: <function ne at 0x7fce34cbb100>, <OpOverload(op='aten.ne', overload='Scalar')>: <function ne at 0x7fce34cbb100>, <OpOverload(op='aten.ne', overload='Tensor_out')>: <function ne at 0x7fce34cbb100>, <OpOverload(op='aten.ne', overload='Scalar_out')>: <function ne at 0x7fce34cbb100>, <OpOverload(op='aten.nextafter', overload='default')>: <function nextafter at 0x7fce34cbb4c0>, <OpOverload(op='aten.nextafter', overload='out')>: <function nextafter at 0x7fce34cbb4c0>, <OpOverload(op='aten.pow', overload='Tensor_Tensor')>: <function pow at 0x7fce34c98b80>, <OpOverload(op='aten.pow', overload='Scalar_out')>: <function pow at 0x7fce34c98b80>, <OpOverload(op='aten.tanh_backward', overload='grad_input')>: <function tanh_backward at 0x7fce34ee5940>, <OpOverload(op='aten.pow', overload='Tensor_Scalar')>: <function pow at 0x7fce34c98b80>, <OpOverload(op='aten.pow', overload='Tensor_Scalar_out')>: <function pow at 0x7fce34c98b80>, <OpOverload(op='aten.pow', overload='Tensor_Tensor_out')>: <function pow at 0x7fce34c98b80>, <OpOverload(op='aten.pow', overload='Scalar')>: <function pow at 0x7fce34c98b80>, <OpOverload(op='aten.remainder', overload='Tensor')>: <function remainder at 0x7fce34cbb880>, <OpOverload(op='aten.remainder', overload='Scalar')>: <function remainder at 0x7fce34cbb880>, <OpOverload(op='aten.remainder', overload='Scalar_Tensor')>: <function remainder at 0x7fce34cbb880>, <OpOverload(op='aten.remainder', overload='Scalar_out')>: <function remainder at 0x7fce34cbb880>, <OpOverload(op='aten.remainder', overload='Scalar_Tensor_out')>: <function remainder at 0x7fce34cbb880>, <OpOverload(op='aten.remainder', overload='Tensor_out')>: <function remainder at 0x7fce34cbb880>, <OpOverload(op='aten.sub', overload='Tensor')>: <function sub at 0x7fce34cbbe20>, <OpOverload(op='aten.sub', overload='Scalar')>: <function sub at 0x7fce34cbbe20>, <OpOverload(op='aten.sub', overload='Scalar_out')>: <function sub at 0x7fce34cbbe20>, <OpOverload(op='aten.sub', overload='out')>: <function sub at 0x7fce34cbbe20>, <OpOverload(op='aten.squeeze', overload='default')>: <function squeeze_default at 0x7fce34de4900>, <OpOverload(op='aten.squeeze', overload='dim')>: <function squeeze_default at 0x7fce34de4900>, <OpOverload(op='aten.squeeze', overload='dims')>: <function squeeze at 0x7fce34d11ee0>, <OpOverload(op='aten.transpose', overload='int')>: <function transpose at 0x7fce34b30fe0>, <OpOverload(op='aten.transpose', overload='Dimname')>: <function transpose at 0x7fce34b30fe0>, <OpOverload(op='aten.acosh', overload='default')>: <function acosh at 0x7fce34de7e20>, <OpOverload(op='aten.acosh', overload='out')>: <function acosh at 0x7fce34de7e20>, <OpOverload(op='aten.asin', overload='default')>: <function asin at 0x7fce34c582c0>, <OpOverload(op='aten.asin', overload='out')>: <function asin at 0x7fce34c582c0>, <OpOverload(op='aten.asinh', overload='default')>: <function asinh at 0x7fce34c58720>, <OpOverload(op='aten.asinh', overload='out')>: <function asinh at 0x7fce34c58720>, <OpOverload(op='aten.atan', overload='default')>: <function atan at 0x7fce34c58b80>, <OpOverload(op='aten.atan', overload='out')>: <function atan at 0x7fce34c58b80>, <OpOverload(op='aten.atanh', overload='default')>: <function atanh at 0x7fce34c58fe0>, <OpOverload(op='aten.atanh', overload='out')>: <function atanh at 0x7fce34c58fe0>, <OpOverload(op='aten.cos', overload='default')>: <function cos at 0x7fce34c5a0c0>, <OpOverload(op='aten.cos', overload='out')>: <function cos at 0x7fce34c5a0c0>, <OpOverload(op='aten.cosh', overload='default')>: <function cosh at 0x7fce34c5a520>, <OpOverload(op='aten.cosh', overload='out')>: <function cosh at 0x7fce34c5a520>, <OpOverload(op='aten.bitwise_not', overload='default')>: <function bitwise_not at 0x7fce34c59440>, <OpOverload(op='aten.bitwise_not', overload='out')>: <function bitwise_not at 0x7fce34c59440>, <OpOverload(op='aten.ceil', overload='default')>: <function ceil at 0x7fce34c598a0>, <OpOverload(op='aten.ceil', overload='out')>: <function ceil at 0x7fce34c598a0>, <OpOverload(op='aten.conj_physical', overload='default')>: <function conj_physical at 0x7fce34c59c60>, <OpOverload(op='aten.clone', overload='out')>: <function clone at 0x7fce34cd54e0>, <OpOverload(op='aten.conj_physical', overload='out')>: <function conj_physical at 0x7fce34c59c60>, <OpOverload(op='aten.clone', overload='default')>: <function clone at 0x7fce34cd54e0>, <OpOverload(op='aten.digamma', overload='default')>: <function digamma at 0x7fce34c5a980>, <OpOverload(op='aten.digamma', overload='out')>: <function digamma at 0x7fce34c5a980>, <OpOverload(op='aten.erf', overload='default')>: <function erf at 0x7fce34de7a60>, <OpOverload(op='aten.erf', overload='out')>: <function erf at 0x7fce34de7a60>, <OpOverload(op='aten.erfc', overload='default')>: <function erfc at 0x7fce34c5af20>, <OpOverload(op='aten.erfc', overload='out')>: <function erfc at 0x7fce34c5af20>, <OpOverload(op='aten.exp', overload='default')>: <function exp at 0x7fce34c5b380>, <OpOverload(op='aten.exp', overload='out')>: <function exp at 0x7fce34c5b380>, <OpOverload(op='aten.expm1', overload='default')>: <function expm1 at 0x7fce34c5b7e0>, <OpOverload(op='aten.expm1', overload='out')>: <function expm1 at 0x7fce34c5b7e0>, <OpOverload(op='aten.exp2', overload='default')>: <function exp2 at 0x7fce34c5bc40>, <OpOverload(op='aten.exp2', overload='out')>: <function exp2 at 0x7fce34c5bc40>, <OpOverload(op='aten.fill', overload='Scalar')>: <function fill_scalar at 0x7fce34ee67a0>, <OpOverload(op='aten.fill', overload='Tensor')>: <function fill_tensor at 0x7fce34ee6840>, <OpOverload(op='aten.floor', overload='default')>: <function floor at 0x7fce34c6c680>, <OpOverload(op='aten.floor', overload='out')>: <function floor at 0x7fce34c6c680>, <OpOverload(op='aten.lgamma', overload='default')>: <function lgamma at 0x7fce34c6e700>, <OpOverload(op='aten.lgamma', overload='out')>: <function lgamma at 0x7fce34c6e700>, <OpOverload(op='aten.log', overload='default')>: <function log at 0x7fce34c6eb60>, <OpOverload(op='aten.log', overload='out')>: <function log at 0x7fce34c6eb60>, <OpOverload(op='aten.log1p', overload='default')>: <function log1p at 0x7fce34c6efc0>, <OpOverload(op='aten.log1p', overload='out')>: <function log1p at 0x7fce34c6efc0>, <OpOverload(op='aten.log2', overload='default')>: <function log2 at 0x7fce34c6f420>, <OpOverload(op='aten.log2', overload='out')>: <function log2 at 0x7fce34c6f420>, <OpOverload(op='aten.log10', overload='default')>: <function log10 at 0x7fce34c6f880>, <OpOverload(op='aten.log10', overload='out')>: <function log10 at 0x7fce34c6f880>, <OpOverload(op='aten.reciprocal', overload='default')>: <function reciprocal at 0x7fce34c6f060>, <OpOverload(op='aten.reciprocal', overload='out')>: <function reciprocal at 0x7fce34c6f060>, <OpOverload(op='aten.neg', overload='default')>: <function neg at 0x7fce34c88540>, <OpOverload(op='aten.neg', overload='out')>: <function neg at 0x7fce34c88540>, <OpOverload(op='aten.round', overload='default')>: <function round at 0x7fce34c887c0>, <OpOverload(op='aten.round', overload='decimals')>: <function round at 0x7fce34c887c0>, <OpOverload(op='aten.round', overload='out')>: <function round at 0x7fce34c887c0>, <OpOverload(op='aten.round', overload='decimals_out')>: <function round at 0x7fce34c887c0>, <OpOverload(op='aten.rsqrt', overload='default')>: <function rsqrt at 0x7fce34c88b80>, <OpOverload(op='aten.rsqrt', overload='out')>: <function rsqrt at 0x7fce34c88b80>, <OpOverload(op='aten.sign', overload='default')>: <function sign at 0x7fce34c898a0>, <OpOverload(op='aten.sign', overload='out')>: <function sign at 0x7fce34c898a0>, <OpOverload(op='aten.signbit', overload='default')>: <function signbit at 0x7fce34c89d00>, <OpOverload(op='aten.signbit', overload='out')>: <function signbit at 0x7fce34c89d00>, <OpOverload(op='aten.sin', overload='default')>: <function sin at 0x7fce34c8a160>, <OpOverload(op='aten.abs', overload='default')>: <function abs at 0x7fce34de7420>, <OpOverload(op='aten.abs', overload='out')>: <function abs at 0x7fce34de7420>, <OpOverload(op='aten.acos', overload='default')>: <function acos at 0x7fce34de79c0>, <OpOverload(op='aten.acos', overload='out')>: <function acos at 0x7fce34de79c0>, <OpOverload(op='aten.diagonal_scatter', overload='default')>: <function diagonal_scatter at 0x7fce34b30540>, <OpOverload(op='aten.diagonal', overload='default')>: <function diagonal at 0x7fce34b30360>, <OpOverload(op='aten.select_scatter', overload='default')>: <function select_scatter at 0x7fce34b5f740>, <OpOverload(op='aten.sym_numel', overload='default')>: <function sym_numel at 0x7fce34de4540>, <OpOverload(op='aten.empty_like', overload='default')>: <function empty_like at 0x7fce34b32b60>, <OpOverload(op='aten.empty_like', overload='out')>: <function empty_like at 0x7fce34b32b60>, <OpOverload(op='aten.ones_like', overload='default')>: <function ones_like at 0x7fce34b33f60>, <OpOverload(op='aten.ones_like', overload='out')>: <function ones_like at 0x7fce34b33f60>, <OpOverload(op='aten.zeros_like', overload='default')>: <function zeros_like at 0x7fce34b33ce0>, <OpOverload(op='aten.zeros_like', overload='out')>: <function zeros_like at 0x7fce34b33ce0>, <OpOverload(op='aten.new_empty', overload='default')>: <function new_empty at 0x7fce34b31080>, <OpOverload(op='aten.new_empty', overload='out')>: <function new_empty at 0x7fce34b31080>, <OpOverload(op='aten.new_empty_strided', overload='default')>: <function new_empty_strided at 0x7fce34b30680>, <OpOverload(op='aten.new_empty_strided', overload='out')>: <function new_empty_strided at 0x7fce34b30680>, <OpOverload(op='aten.new_full', overload='default')>: <function new_full at 0x7fce34b328e0>, <OpOverload(op='aten.new_full', overload='out')>: <function new_full at 0x7fce34b328e0>, <OpOverload(op='aten.new_zeros', overload='default')>: <function new_zeros at 0x7fce34b32160>, <OpOverload(op='aten.new_zeros', overload='out')>: <function new_zeros at 0x7fce34b32160>, <OpOverload(op='aten.new_ones', overload='default')>: <function new_ones at 0x7fce34b32660>, <OpOverload(op='aten.new_ones', overload='out')>: <function new_ones at 0x7fce34b32660>, <OpOverload(op='aten.item', overload='default')>: <function item at 0x7fce34cd5580>, <OpOverload(op='aten._unsafe_index_put', overload='default')>: <function _unsafe_index_put at 0x7fce34d9fba0>, <OpOverload(op='aten.slice_scatter', overload='default')>: <function slice_scatter at 0x7fce34d23b00>, <OpOverload(op='aten.slice_scatter', overload='out')>: <function slice_scatter at 0x7fce34d23b00>, <OpOverload(op='aten.index_put_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5760>, <OpOverload(op='aten.as_strided_scatter', overload='default')>: <function as_strided_scatter at 0x7fce34d10220>, <OpOverload(op='aten.empty_strided', overload='default')>: <function empty_strided at 0x7fce34b320c0>, <OpOverload(op='aten.zeros', overload='default')>: <function zeros at 0x7fce34b31ee0>, <OpOverload(op='aten.detach', overload='default')>: <function nop_decomposition at 0x7fce34d71120>, <OpOverload(op='aten.lift_fresh', overload='default')>: <function nop_decomposition at 0x7fce34d71120>}
- experimental_experiment.torch_dynamo.get_decomposition_table()[source]¶
Returns the decomposition table needed to translate backward graph into onnx. It should used as follows:
import torch from torch._dynamo.backends.common import aot_autograd from experimental_experiment.torch_dynamo import get_decomposition_table aot_compiler = aot_autograd( fw_compiler=backend_debug, decompositions=get_decomposition_table() ) compiled_model = torch.compile( model, backend=aot_compiler, dynamic=dynamic, fullgraph=fullgraph, )
The value is:
<<<
import pprint from experimental_experiment.torch_dynamo import get_decomposition_table pprint.pprint(get_decomposition_table())
>>>
{<OpOverload(op='aten.embedding_dense_backward', overload='default')>: <function embedding_dense_backward at 0x7fce34d4a020>, <OpOverload(op='aten.native_layer_norm_backward', overload='default')>: <function native_layer_norm_backward at 0x7fce34d48b80>}
- experimental_experiment.torch_dynamo.get_decomposition_table_by_name(name: str)[source]¶
Returns a predefined decomposition table.
- Parameters:
name – name see below
- Returns:
decomposition table
‘none’: do not decompose
‘default’:
get_decomposition_table()‘onnxscript’:
get_decomposition_table_onnxscript()‘dynamo’:
get_decomposition_table_dynamo()
- experimental_experiment.torch_dynamo.get_decomposition_table_dynamo(onnx_registry=None)[source]¶
Returns the decomposition table needed for the dynamo exporter.
- Parameters:
onnx_registry – instance of class
torch.onnx._internal.exporter.OnnxRegistry
The value is:
<<<
import pprint from experimental_experiment.torch_dynamo import get_decomposition_table_dynamo pprint.pprint(get_decomposition_table_dynamo())
>>>
/home/xadupre/vv/this312/lib/python3.12/site-packages/torch/onnx/_internal/_exporter_legacy.py:101: UserWarning: torch.onnx.dynamo_export only implements opset version 18 for now. If you need to use a different opset version, please register them with register_custom_op. warnings.warn( /home/xadupre/github/onnxscript/onnxscript/converter.py:823: FutureWarning: 'onnxscript.values.Op.param_schemas' is deprecated in version 0.1 and will be removed in the future. Please use '.op_signature' instead. param_schemas = callee.param_schemas() /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:438: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead ast.Num, /home/xadupre/github/onnxscript/onnxscript/converter.py:439: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead ast.Str, /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:823: FutureWarning: 'onnxscript.values.OnnxFunction.param_schemas' is deprecated in version 0.1 and will be removed in the future. Please use '.op_signature' instead. param_schemas = callee.param_schemas() /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:583: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance(node, (ast.NameConstant, ast.Constant)) and (node.value is None): /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( /home/xadupre/github/onnxscript/onnxscript/converter.py:431: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead if isinstance( {<torch._higher_order_ops.out_dtype.OutDtypeOperator object at 0x7fce35030560>: <function out_dtype_decomp at 0x7fce34db71a0>, <OpOverload(op='aten.histogramdd', overload='TensorList_bins')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b634860>, kernel=<OpOverload(op='aten.histogramdd', overload='TensorList_bins')>), <OpOverload(op='aten.trapz', overload='dx')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b629440>, kernel=<OpOverload(op='aten.trapz', overload='dx')>), <OpOverload(op='aten.special_exp2', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b629620>, kernel=<OpOverload(op='aten.special_exp2', overload='default')>), <OpOverload(op='aten.fbgemm_linear_int8_weight', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b629c60>, kernel=<OpOverload(op='aten.fbgemm_linear_int8_weight', overload='default')>), <OpOverload(op='aten.lu_solve', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b628180>, kernel=<OpOverload(op='aten.lu_solve', overload='default')>), <OpOverload(op='aten._test_ambiguous_defaults', overload='b')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6409a0>, kernel=<OpOverload(op='aten._test_ambiguous_defaults', overload='b')>), <OpOverload(op='aten._convolution_mode', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b628a40>, kernel=<OpOverload(op='aten._convolution_mode', overload='default')>), <OpOverload(op='aten._thnn_fused_lstm_cell_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b628fe0>, kernel=<OpOverload(op='aten._thnn_fused_lstm_cell_backward', overload='default')>), <OpOverload(op='aten.affine_grid_generator_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b622480>, kernel=<OpOverload(op='aten.affine_grid_generator_backward', overload='default')>), <OpOverload(op='aten._sparse_csc_tensor_unsafe', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b622700>, kernel=<OpOverload(op='aten._sparse_csc_tensor_unsafe', overload='default')>), <OpOverload(op='aten.sum_to_size', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6228e0>, kernel=<OpOverload(op='aten.sum_to_size', overload='default')>), <OpOverload(op='aten.infinitely_differentiable_gelu_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b622980>, kernel=<OpOverload(op='aten.infinitely_differentiable_gelu_backward', overload='default')>), <OpOverload(op='aten.linalg_matrix_norm', overload='str_ord')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b620900>, kernel=<OpOverload(op='aten.linalg_matrix_norm', overload='str_ord')>), <OpOverload(op='aten.to_mkldnn_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6234c0>, kernel=<OpOverload(op='aten.to_mkldnn_backward', overload='default')>), <OpOverload(op='aten.orgqr', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b623560>, kernel=<OpOverload(op='aten.orgqr', overload='default')>), <OpOverload(op='aten._cufft_get_plan_cache_max_size', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6239c0>, kernel=<OpOverload(op='aten._cufft_get_plan_cache_max_size', overload='default')>), <OpOverload(op='aten.quantile', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b621120>, kernel=<OpOverload(op='aten.quantile', overload='default')>), <OpOverload(op='c10d_functional.reduce_scatter_tensor_coalesced', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b641940>, kernel=<OpOverload(op='c10d_functional.reduce_scatter_tensor_coalesced', overload='default')>), <OpOverload(op='prepacked.unpack_prepacked_sizes_conv2d', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b641b20>, kernel=<OpOverload(op='prepacked.unpack_prepacked_sizes_conv2d', overload='default')>), <OpOverload(op='aten.special_xlogy', overload='self_scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6218a0>, kernel=<OpOverload(op='aten.special_xlogy', overload='self_scalar')>), <OpOverload(op='aten._shape_as_tensor', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6223e0>, kernel=<OpOverload(op='aten._shape_as_tensor', overload='default')>), <OpOverload(op='aten.gradient', overload='scalarrayarray')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6400e0>, kernel=<OpOverload(op='aten.gradient', overload='scalarrayarray')>), <OpOverload(op='aten.norm_except_dim', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b640ae0>, kernel=<OpOverload(op='aten.norm_except_dim', overload='default')>), <OpOverload(op='aten.gru_cell', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b641080>, kernel=<OpOverload(op='aten.gru_cell', overload='default')>), <OpOverload(op='aten.quantized_lstm_cell', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6363e0>, kernel=<OpOverload(op='aten.quantized_lstm_cell', overload='default')>), <OpOverload(op='aten._sparse_sum', overload='dtype')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b636700>, kernel=<OpOverload(op='aten._sparse_sum', overload='dtype')>), <OpOverload(op='aten.special_logit', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6367a0>, kernel=<OpOverload(op='aten.special_logit', overload='default')>), <OpOverload(op='aten.log_softmax', overload='Dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61f560>, kernel=<OpOverload(op='aten.log_softmax', overload='Dimname')>), <OpOverload(op='aten.softmax', overload='Dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b622c00>, kernel=<OpOverload(op='aten.softmax', overload='Dimname')>), <OpOverload(op='aten.isreal', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6216c0>, kernel=<OpOverload(op='aten.isreal', overload='default')>), <OpOverload(op='aten._dim_arange', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b621da0>, kernel=<OpOverload(op='aten._dim_arange', overload='default')>), <OpOverload(op='aten.linalg_tensorsolve', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b621f80>, kernel=<OpOverload(op='aten.linalg_tensorsolve', overload='default')>), <OpOverload(op='_test.get_first', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6431a0>, kernel=<OpOverload(op='_test.get_first', overload='default')>), <OpOverload(op='c10d_functional.reduce_scatter_tensor', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6432e0>, kernel=<OpOverload(op='c10d_functional.reduce_scatter_tensor', overload='default')>), <OpOverload(op='aten._remove_batch_dim', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b640040>, kernel=<OpOverload(op='aten._remove_batch_dim', overload='default')>), <OpOverload(op='aten.special_xlogy', overload='other_scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b640220>, kernel=<OpOverload(op='aten.special_xlogy', overload='other_scalar')>), <OpOverload(op='aten.linalg_vecdot', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b640860>, kernel=<OpOverload(op='aten.linalg_vecdot', overload='default')>), <OpOverload(op='aten.inner', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b640d60>, kernel=<OpOverload(op='aten.inner', overload='default')>), <OpOverload(op='aten.nll_loss2d', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6371a0>, kernel=<OpOverload(op='aten.nll_loss2d', overload='default')>), <OpOverload(op='prepacked.unpack_prepacked_sizes_linear', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b643060>, kernel=<OpOverload(op='prepacked.unpack_prepacked_sizes_linear', overload='default')>), <OpOverload(op='aten.fbgemm_linear_fp16_weight_fp32_activation', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6377e0>, kernel=<OpOverload(op='aten.fbgemm_linear_fp16_weight_fp32_activation', overload='default')>), <OpOverload(op='aten._convolution_double_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b634c20>, kernel=<OpOverload(op='aten._convolution_double_backward', overload='default')>), <OpOverload(op='aten.get_gradients', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b635300>, kernel=<OpOverload(op='aten.get_gradients', overload='default')>), <OpOverload(op='aten.special_psi', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b637600>, kernel=<OpOverload(op='aten.special_psi', overload='default')>), <OpOverload(op='c10d_functional.all_reduce', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b642ca0>, kernel=<OpOverload(op='c10d_functional.all_reduce', overload='default')>), <OpOverload(op='aten._propagate_xla_data', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62ade0>, kernel=<OpOverload(op='aten._propagate_xla_data', overload='default')>), <OpOverload(op='aten.outer', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62b100>, kernel=<OpOverload(op='aten.outer', overload='default')>), <OpOverload(op='aten.choose_qparams_optimized', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62b7e0>, kernel=<OpOverload(op='aten.choose_qparams_optimized', overload='default')>), <OpOverload(op='aten.conv_transpose3d', overload='input')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62ba60>, kernel=<OpOverload(op='aten.conv_transpose3d', overload='input')>), <OpOverload(op='aten.fbgemm_linear_int8_weight_fp32_activation', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6342c0>, kernel=<OpOverload(op='aten.fbgemm_linear_int8_weight_fp32_activation', overload='default')>), <OpOverload(op='aten._wrapped_linear_prepack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6293a0>, kernel=<OpOverload(op='aten._wrapped_linear_prepack', overload='default')>), <OpOverload(op='aten._sparse_mm', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6296c0>, kernel=<OpOverload(op='aten._sparse_mm', overload='default')>), <OpOverload(op='aten.linalg_slogdet', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b629b20>, kernel=<OpOverload(op='aten.linalg_slogdet', overload='default')>), <OpOverload(op='aten.matrix_exp_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62a0c0>, kernel=<OpOverload(op='aten.matrix_exp_backward', overload='default')>), <OpOverload(op='aten._version', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62a980>, kernel=<OpOverload(op='aten._version', overload='default')>), <OpOverload(op='aten.linalg_matrix_rank', overload='atol_rtol_tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62aac0>, kernel=<OpOverload(op='aten.linalg_matrix_rank', overload='atol_rtol_tensor')>), <OpOverload(op='aten._convolution', overload='deprecated')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b623d80>, kernel=<OpOverload(op='aten._convolution', overload='deprecated')>), <OpOverload(op='aten.is_signed', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b628540>, kernel=<OpOverload(op='aten.is_signed', overload='default')>), <OpOverload(op='aten.to_sparse', overload='sparse_dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b636a20>, kernel=<OpOverload(op='aten.to_sparse', overload='sparse_dim')>), <OpOverload(op='aten.hstack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b628cc0>, kernel=<OpOverload(op='aten.hstack', overload='default')>), <OpOverload(op='aten.cumulative_trapezoid', overload='x')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b629080>, kernel=<OpOverload(op='aten.cumulative_trapezoid', overload='x')>), <OpOverload(op='aten.linalg_tensorinv', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b622ca0>, kernel=<OpOverload(op='aten.linalg_tensorinv', overload='default')>), <OpOverload(op='aten.vander', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6232e0>, kernel=<OpOverload(op='aten.vander', overload='default')>), <OpOverload(op='aten.is_vulkan_available', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b623740>, kernel=<OpOverload(op='aten.is_vulkan_available', overload='default')>), <OpOverload(op='aten.thnn_conv2d', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b621080>, kernel=<OpOverload(op='aten.thnn_conv2d', overload='default')>), <OpOverload(op='aten.sparse_bsc_tensor', overload='ccol_row_value')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b621760>, kernel=<OpOverload(op='aten.sparse_bsc_tensor', overload='ccol_row_value')>), <OpOverload(op='aten._use_cudnn_rnn_flatten_weight', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b635440>, kernel=<OpOverload(op='aten._use_cudnn_rnn_flatten_weight', overload='default')>), <OpOverload(op='aten.fake_quantize_per_tensor_affine', overload='tensor_qparams')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b621e40>, kernel=<OpOverload(op='aten.fake_quantize_per_tensor_affine', overload='tensor_qparams')>), <OpOverload(op='aten.linalg_svdvals', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6220c0>, kernel=<OpOverload(op='aten.linalg_svdvals', overload='default')>), <OpOverload(op='aten.linalg_solve_ex', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6356c0>, kernel=<OpOverload(op='aten.linalg_solve_ex', overload='default')>), <OpOverload(op='aten.is_distributed', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6402c0>, kernel=<OpOverload(op='aten.is_distributed', overload='default')>), <OpOverload(op='aten.retains_grad', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6407c0>, kernel=<OpOverload(op='aten.retains_grad', overload='default')>), <OpOverload(op='aten.rms_norm', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b640e00>, kernel=<OpOverload(op='aten.rms_norm', overload='default')>), <OpOverload(op='aten.unflatten_dense_tensors', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b641120>, kernel=<OpOverload(op='aten.unflatten_dense_tensors', overload='default')>), <OpOverload(op='aten.sparse_csr_tensor', overload='crow_col_value_size')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6362a0>, kernel=<OpOverload(op='aten.sparse_csr_tensor', overload='crow_col_value_size')>), <OpOverload(op='aten._test_serialization_subcmul', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b636660>, kernel=<OpOverload(op='aten._test_serialization_subcmul', overload='default')>), <OpOverload(op='aten.sparse_bsr_tensor', overload='crow_col_value_size')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b636980>, kernel=<OpOverload(op='aten.sparse_bsr_tensor', overload='crow_col_value_size')>), <OpOverload(op='aten._cast_Long', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b636b60>, kernel=<OpOverload(op='aten._cast_Long', overload='default')>), <OpOverload(op='aten.conv_tbc_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6372e0>, kernel=<OpOverload(op='aten.conv_tbc_backward', overload='default')>), <OpOverload(op='aten.linalg_matrix_rank', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b636200>, kernel=<OpOverload(op='aten.linalg_matrix_rank', overload='default')>), <OpOverload(op='aten._sparse_coo_tensor_unsafe', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b637420>, kernel=<OpOverload(op='aten._sparse_coo_tensor_unsafe', overload='default')>), <OpOverload(op='aten.bilinear', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6359e0>, kernel=<OpOverload(op='aten.bilinear', overload='default')>), <OpOverload(op='aten._validate_sparse_compressed_tensor_args', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b635bc0>, kernel=<OpOverload(op='aten._validate_sparse_compressed_tensor_args', overload='default')>), <OpOverload(op='aten._cast_Int', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62afc0>, kernel=<OpOverload(op='aten._cast_Int', overload='default')>), <OpOverload(op='aten.fake_quantize_per_tensor_affine_cachemask_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62b880>, kernel=<OpOverload(op='aten.fake_quantize_per_tensor_affine_cachemask_backward', overload='default')>), <OpOverload(op='aten.adaptive_avg_pool2d', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62bb00>, kernel=<OpOverload(op='aten.adaptive_avg_pool2d', overload='default')>), <OpOverload(op='aten.fake_quantize_per_channel_affine', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b634220>, kernel=<OpOverload(op='aten.fake_quantize_per_channel_affine', overload='default')>), <OpOverload(op='aten.special_polygamma', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b629760>, kernel=<OpOverload(op='aten.special_polygamma', overload='default')>), <OpOverload(op='aten.gather_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62aa20>, kernel=<OpOverload(op='aten.gather_backward', overload='default')>), <OpOverload(op='aten._sparse_mm', overload='reduce')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61cd60>, kernel=<OpOverload(op='aten._sparse_mm', overload='reduce')>), <OpOverload(op='aten.native_channel_shuffle', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62ab60>, kernel=<OpOverload(op='aten.native_channel_shuffle', overload='default')>), <OpOverload(op='aten.ger', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b623ba0>, kernel=<OpOverload(op='aten.ger', overload='default')>), <OpOverload(op='aten._lu_with_info', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6282c0>, kernel=<OpOverload(op='aten._lu_with_info', overload='default')>), <OpOverload(op='aten.data', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b628360>, kernel=<OpOverload(op='aten.data', overload='default')>), <OpOverload(op='aten._is_zerotensor', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b628860>, kernel=<OpOverload(op='aten._is_zerotensor', overload='default')>), <OpOverload(op='aten.special_log1p', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b628e00>, kernel=<OpOverload(op='aten.special_log1p', overload='default')>), <OpOverload(op='aten.cudnn_is_acceptable', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b629120>, kernel=<OpOverload(op='aten.cudnn_is_acceptable', overload='default')>), <OpOverload(op='aten.linalg_norm', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b622660>, kernel=<OpOverload(op='aten.linalg_norm', overload='default')>), <OpOverload(op='aten.gradient', overload='scalarrayint')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6227a0>, kernel=<OpOverload(op='aten.gradient', overload='scalarrayint')>), <OpOverload(op='aten._sparse_softmax', overload='int')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6365c0>, kernel=<OpOverload(op='aten._sparse_softmax', overload='int')>), <OpOverload(op='aten.result_type', overload='Scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b623060>, kernel=<OpOverload(op='aten.result_type', overload='Scalar')>), <OpOverload(op='aten._cast_Byte', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b623880>, kernel=<OpOverload(op='aten._cast_Byte', overload='default')>), <OpOverload(op='aten.to_sparse', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b620e00>, kernel=<OpOverload(op='aten.to_sparse', overload='default')>), <OpOverload(op='aten._test_ambiguous_defaults', overload='a')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b621800>, kernel=<OpOverload(op='aten._test_ambiguous_defaults', overload='a')>), <OpOverload(op='aten.special_gammainc', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b621a80>, kernel=<OpOverload(op='aten.special_gammainc', overload='default')>), <OpOverload(op='aten.triplet_margin_loss', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b622340>, kernel=<OpOverload(op='aten.triplet_margin_loss', overload='default')>), <OpOverload(op='aten.to_sparse_bsc', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b822520>, kernel=<OpOverload(op='aten.to_sparse_bsc', overload='default')>), <OpOverload(op='aten._backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b640360>, kernel=<OpOverload(op='aten._backward', overload='default')>), <OpOverload(op='aten._reshape_from_tensor', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b640a40>, kernel=<OpOverload(op='aten._reshape_from_tensor', overload='default')>), <OpOverload(op='aten.sparse_bsc_tensor', overload='ccol_row_value_size')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62b2e0>, kernel=<OpOverload(op='aten.sparse_bsc_tensor', overload='ccol_row_value_size')>), <OpOverload(op='aten._pack_padded_sequence_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6360c0>, kernel=<OpOverload(op='aten._pack_padded_sequence_backward', overload='default')>), <OpOverload(op='aten.is_leaf', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b636f20>, kernel=<OpOverload(op='aten.is_leaf', overload='default')>), <OpOverload(op='aten._has_compatible_shallow_copy_type', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b637740>, kernel=<OpOverload(op='aten._has_compatible_shallow_copy_type', overload='default')>), <OpOverload(op='aten.cumulative_trapezoid', overload='dx')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b634900>, kernel=<OpOverload(op='aten.cumulative_trapezoid', overload='dx')>), <OpOverload(op='quantized.conv2d_unpack_sizes', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b642ac0>, kernel=<OpOverload(op='quantized.conv2d_unpack_sizes', overload='default')>), <OpOverload(op='aten._cast_Float', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b635080>, kernel=<OpOverload(op='aten._cast_Float', overload='default')>), <OpOverload(op='aten._cast_Half', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6354e0>, kernel=<OpOverload(op='aten._cast_Half', overload='default')>), <OpOverload(op='aten.ctc_loss', overload='Tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b635940>, kernel=<OpOverload(op='aten.ctc_loss', overload='Tensor')>), <OpOverload(op='aten._sparse_softmax', overload='Dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b635a80>, kernel=<OpOverload(op='aten._sparse_softmax', overload='Dimname')>), <OpOverload(op='aten.trapezoid', overload='x')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62b060>, kernel=<OpOverload(op='aten.trapezoid', overload='x')>), <OpOverload(op='aten.linalg_solve', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62b420>, kernel=<OpOverload(op='aten.linalg_solve', overload='default')>), <OpOverload(op='aten._sobol_engine_draw', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62b6a0>, kernel=<OpOverload(op='aten._sobol_engine_draw', overload='default')>), <OpOverload(op='aten.gradient', overload='array')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6344a0>, kernel=<OpOverload(op='aten.gradient', overload='array')>), <OpOverload(op='aten.histogramdd', overload='int_bins')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b634720>, kernel=<OpOverload(op='aten.histogramdd', overload='int_bins')>), <OpOverload(op='aten.nanmean', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b823a60>, kernel=<OpOverload(op='aten.nanmean', overload='default')>), <OpOverload(op='aten.slogdet', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61cea0>, kernel=<OpOverload(op='aten.slogdet', overload='default')>), <OpOverload(op='aten.trapz', overload='x')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61d6c0>, kernel=<OpOverload(op='aten.trapz', overload='x')>), <OpOverload(op='aten.tensordot', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b623c40>, kernel=<OpOverload(op='aten.tensordot', overload='default')>), <OpOverload(op='aten.cummaxmin_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61c2c0>, kernel=<OpOverload(op='aten.cummaxmin_backward', overload='default')>), <OpOverload(op='_test.leaky_relu', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6413a0>, kernel=<OpOverload(op='_test.leaky_relu', overload='default')>), <OpOverload(op='aten._sparse_sum', overload='dim_dtype')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61c720>, kernel=<OpOverload(op='aten._sparse_sum', overload='dim_dtype')>), <OpOverload(op='aten.cumprod_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b822fc0>, kernel=<OpOverload(op='aten.cumprod_backward', overload='default')>), <OpOverload(op='aten._batch_norm_impl_index_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b8232e0>, kernel=<OpOverload(op='aten._batch_norm_impl_index_backward', overload='default')>), <OpOverload(op='aten.nuclear_norm', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b823740>, kernel=<OpOverload(op='aten.nuclear_norm', overload='default')>), <OpOverload(op='aten.vstack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b823920>, kernel=<OpOverload(op='aten.vstack', overload='default')>), <OpOverload(op='aten.special_round', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b9fb9c0>, kernel=<OpOverload(op='aten.special_round', overload='default')>), <OpOverload(op='aten.msort', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b9fb420>, kernel=<OpOverload(op='aten.msort', overload='default')>), <OpOverload(op='aten.argsort', overload='dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b822700>, kernel=<OpOverload(op='aten.argsort', overload='dimname')>), <OpOverload(op='mkldnn._is_mkldnn_bf16_supported', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b641260>, kernel=<OpOverload(op='mkldnn._is_mkldnn_bf16_supported', overload='default')>), <OpOverload(op='aten._cast_Double', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b8222a0>, kernel=<OpOverload(op='aten._cast_Double', overload='default')>), <OpOverload(op='aten._pad_circular', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b620540>, kernel=<OpOverload(op='aten._pad_circular', overload='default')>), <OpOverload(op='aten.index_select_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b620860>, kernel=<OpOverload(op='aten.index_select_backward', overload='default')>), <OpOverload(op='_test.cat', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b641620>, kernel=<OpOverload(op='_test.cat', overload='default')>), <OpOverload(op='aten.linalg_matmul', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b620d60>, kernel=<OpOverload(op='aten.linalg_matmul', overload='default')>), <OpOverload(op='aten.kron', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61f6a0>, kernel=<OpOverload(op='aten.kron', overload='default')>), <OpOverload(op='aten.to_dense_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61f880>, kernel=<OpOverload(op='aten.to_dense_backward', overload='default')>), <OpOverload(op='aten.linalg_pinv', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b823100>, kernel=<OpOverload(op='aten.linalg_pinv', overload='default')>), <OpOverload(op='aten.linalg_pinv', overload='atol_rtol_float')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61fc40>, kernel=<OpOverload(op='aten.linalg_pinv', overload='atol_rtol_float')>), <OpOverload(op='aten.diagflat', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61ff60>, kernel=<OpOverload(op='aten.diagflat', overload='default')>), <OpOverload(op='aten.value_selecting_reduction_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6202c0>, kernel=<OpOverload(op='aten.value_selecting_reduction_backward', overload='default')>), <OpOverload(op='aten.to_dense', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61e7a0>, kernel=<OpOverload(op='aten.to_dense', overload='default')>), <OpOverload(op='aten.cov', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61d260>, kernel=<OpOverload(op='aten.cov', overload='default')>), <OpOverload(op='aten.sparse_bsr_tensor', overload='crow_col_value')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61ec00>, kernel=<OpOverload(op='aten.sparse_bsr_tensor', overload='crow_col_value')>), <OpOverload(op='aten.linalg_cond', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61efc0>, kernel=<OpOverload(op='aten.linalg_cond', overload='default')>), <OpOverload(op='aten.argwhere', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61f1a0>, kernel=<OpOverload(op='aten.argwhere', overload='default')>), <OpOverload(op='aten.is_inference', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61f380>, kernel=<OpOverload(op='aten.is_inference', overload='default')>), <OpOverload(op='aten.is_conj', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61d9e0>, kernel=<OpOverload(op='aten.is_conj', overload='default')>), <OpOverload(op='aten.row_stack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61db20>, kernel=<OpOverload(op='aten.row_stack', overload='default')>), <OpOverload(op='aten.sparse_csc_tensor', overload='ccol_row_value_size')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61e160>, kernel=<OpOverload(op='aten.sparse_csc_tensor', overload='ccol_row_value_size')>), <OpOverload(op='aten.rnn_relu_cell', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61e340>, kernel=<OpOverload(op='aten.rnn_relu_cell', overload='default')>), <OpOverload(op='aten.adaptive_avg_pool1d', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61e660>, kernel=<OpOverload(op='aten.adaptive_avg_pool1d', overload='default')>), <OpOverload(op='aten._to_cpu', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b629a80>, kernel=<OpOverload(op='aten._to_cpu', overload='default')>), <OpOverload(op='aten.fliplr', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b629f80>, kernel=<OpOverload(op='aten.fliplr', overload='default')>), <OpOverload(op='aten.one_hot', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b623a60>, kernel=<OpOverload(op='aten.one_hot', overload='default')>), <OpOverload(op='aten.sparse_csc_tensor', overload='ccol_row_value')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b623f60>, kernel=<OpOverload(op='aten.sparse_csc_tensor', overload='ccol_row_value')>), <OpOverload(op='aten.matrix_power', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6289a0>, kernel=<OpOverload(op='aten.matrix_power', overload='default')>), <OpOverload(op='aten.align_tensors', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b628d60>, kernel=<OpOverload(op='aten.align_tensors', overload='default')>), <OpOverload(op='aten.cdist', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b622520>, kernel=<OpOverload(op='aten.cdist', overload='default')>), <OpOverload(op='aten.special_gammaln', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b622a20>, kernel=<OpOverload(op='aten.special_gammaln', overload='default')>), <OpOverload(op='aten.chalf', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b822a20>, kernel=<OpOverload(op='aten.chalf', overload='default')>), <OpOverload(op='aten.linalg_pinv', overload='rcond_tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b636ca0>, kernel=<OpOverload(op='aten.linalg_pinv', overload='rcond_tensor')>), <OpOverload(op='aten.to_sparse_csr', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b623920>, kernel=<OpOverload(op='aten.to_sparse_csr', overload='default')>), <OpOverload(op='aten.linalg_vander', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b621300>, kernel=<OpOverload(op='aten.linalg_vander', overload='default')>), <OpOverload(op='aten.ctc_loss', overload='IntList')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b621620>, kernel=<OpOverload(op='aten.ctc_loss', overload='IntList')>), <OpOverload(op='aten._pad_packed_sequence', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6374c0>, kernel=<OpOverload(op='aten._pad_packed_sequence', overload='default')>), <OpOverload(op='aten.fbgemm_linear_fp16_weight', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6379c0>, kernel=<OpOverload(op='aten.fbgemm_linear_fp16_weight', overload='default')>), <OpOverload(op='aten._weight_norm_differentiable_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b637ce0>, kernel=<OpOverload(op='aten._weight_norm_differentiable_backward', overload='default')>), <OpOverload(op='aten.lstm_cell', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b637ec0>, kernel=<OpOverload(op='aten.lstm_cell', overload='default')>), <OpOverload(op='aten._grid_sampler_2d_cpu_fallback_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b640400>, kernel=<OpOverload(op='aten._grid_sampler_2d_cpu_fallback_backward', overload='default')>), <OpOverload(op='aten.masked_select_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b640540>, kernel=<OpOverload(op='aten.masked_select_backward', overload='default')>), <OpOverload(op='aten._saturate_weight_to_fp16', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b635da0>, kernel=<OpOverload(op='aten._saturate_weight_to_fp16', overload='default')>), <OpOverload(op='c10d_functional.broadcast', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6414e0>, kernel=<OpOverload(op='c10d_functional.broadcast', overload='default')>), <OpOverload(op='aten._sparse_bsr_tensor_unsafe', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b636de0>, kernel=<OpOverload(op='aten._sparse_bsr_tensor_unsafe', overload='default')>), <OpOverload(op='aten.fbgemm_linear_quantize_weight', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b637380>, kernel=<OpOverload(op='aten.fbgemm_linear_quantize_weight', overload='default')>), <OpOverload(op='aten.pinverse', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b640720>, kernel=<OpOverload(op='aten.pinverse', overload='default')>), <OpOverload(op='aten.quantized_rnn_tanh_cell', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b634b80>, kernel=<OpOverload(op='aten.quantized_rnn_tanh_cell', overload='default')>), <OpOverload(op='aten.fbgemm_pack_quantized_matrix', overload='KN')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b634fe0>, kernel=<OpOverload(op='aten.fbgemm_pack_quantized_matrix', overload='KN')>), <OpOverload(op='aten._add_batch_dim', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6351c0>, kernel=<OpOverload(op='aten._add_batch_dim', overload='default')>), <OpOverload(op='aten.linalg_eigh', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b635d00>, kernel=<OpOverload(op='aten.linalg_eigh', overload='default')>), <OpOverload(op='aten.qr', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62b1a0>, kernel=<OpOverload(op='aten.qr', overload='default')>), <OpOverload(op='aten._scaled_dot_product_attention_math', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6404a0>, kernel=<OpOverload(op='aten._scaled_dot_product_attention_math', overload='default')>), <OpOverload(op='aten._validate_sparse_csc_tensor_args', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6340e0>, kernel=<OpOverload(op='aten._validate_sparse_csc_tensor_args', overload='default')>), <OpOverload(op='profiler._record_function_exit', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6411c0>, kernel=<OpOverload(op='profiler._record_function_exit', overload='default')>), <OpOverload(op='aten.linalg_eigvalsh', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6349a0>, kernel=<OpOverload(op='aten.linalg_eigvalsh', overload='default')>), <OpOverload(op='aten._sparse_compressed_tensor_unsafe', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6294e0>, kernel=<OpOverload(op='aten._sparse_compressed_tensor_unsafe', overload='default')>), <OpOverload(op='aten._sparse_bsc_tensor_unsafe', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b629940>, kernel=<OpOverload(op='aten._sparse_bsc_tensor_unsafe', overload='default')>), <OpOverload(op='aten.linalg_matrix_norm', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b634400>, kernel=<OpOverload(op='aten.linalg_matrix_norm', overload='default')>), <OpOverload(op='aten._wrapped_quantized_linear_prepacked', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62a020>, kernel=<OpOverload(op='aten._wrapped_quantized_linear_prepacked', overload='default')>), <OpOverload(op='aten.special_i0', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62a5c0>, kernel=<OpOverload(op='aten.special_i0', overload='default')>), <OpOverload(op='aten._cufft_clear_plan_cache', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62a660>, kernel=<OpOverload(op='aten._cufft_clear_plan_cache', overload='default')>), <OpOverload(op='aten.rnn_tanh_cell', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62a8e0>, kernel=<OpOverload(op='aten.rnn_tanh_cell', overload='default')>), <OpOverload(op='aten.l1_loss', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b623b00>, kernel=<OpOverload(op='aten.l1_loss', overload='default')>), <OpOverload(op='aten.fbgemm_pack_quantized_matrix', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b628400>, kernel=<OpOverload(op='aten.fbgemm_pack_quantized_matrix', overload='default')>), <OpOverload(op='aten._sparse_log_softmax', overload='Dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b636520>, kernel=<OpOverload(op='aten._sparse_log_softmax', overload='Dimname')>), <OpOverload(op='aten.flipud', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b622de0>, kernel=<OpOverload(op='aten.flipud', overload='default')>), <OpOverload(op='aten.special_xlogy', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b623100>, kernel=<OpOverload(op='aten.special_xlogy', overload='default')>), <OpOverload(op='aten._nnpack_available', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b623380>, kernel=<OpOverload(op='aten._nnpack_available', overload='default')>), <OpOverload(op='aten._test_autograd_multiple_dispatch', overload='ntonly')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b621440>, kernel=<OpOverload(op='aten._test_autograd_multiple_dispatch', overload='ntonly')>), <OpOverload(op='mkldnn._is_mkldnn_fp16_supported', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b641bc0>, kernel=<OpOverload(op='mkldnn._is_mkldnn_fp16_supported', overload='default')>), <OpOverload(op='aten._rowwise_prune', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6219e0>, kernel=<OpOverload(op='aten._rowwise_prune', overload='default')>), <OpOverload(op='aten.pad', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b621c60>, kernel=<OpOverload(op='aten.pad', overload='default')>), <OpOverload(op='aten.frobenius_norm', overload='dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b637a60>, kernel=<OpOverload(op='aten.frobenius_norm', overload='dim')>), <OpOverload(op='aten.is_neg', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b623600>, kernel=<OpOverload(op='aten.is_neg', overload='default')>), <OpOverload(op='aten.result_type', overload='Scalar_Tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b640180>, kernel=<OpOverload(op='aten.result_type', overload='Scalar_Tensor')>), <OpOverload(op='aten.gradient', overload='scalararray')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62be20>, kernel=<OpOverload(op='aten.gradient', overload='scalararray')>), <OpOverload(op='aten.diff', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b640cc0>, kernel=<OpOverload(op='aten.diff', overload='default')>), <OpOverload(op='aten.linalg_cholesky', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b640ea0>, kernel=<OpOverload(op='aten.linalg_cholesky', overload='default')>), <OpOverload(op='aten.special_expit', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b635e40>, kernel=<OpOverload(op='aten.special_expit', overload='default')>), <OpOverload(op='aten.argsort', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b637240>, kernel=<OpOverload(op='aten.argsort', overload='default')>), <OpOverload(op='aten.result_type', overload='Tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6376a0>, kernel=<OpOverload(op='aten.result_type', overload='Tensor')>), <OpOverload(op='aten.nested_to_padded_tensor', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b634d60>, kernel=<OpOverload(op='aten.nested_to_padded_tensor', overload='default')>), <OpOverload(op='aten.fbgemm_pack_gemm_matrix_fp16', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62a200>, kernel=<OpOverload(op='aten.fbgemm_pack_gemm_matrix_fp16', overload='default')>), <OpOverload(op='aten.is_floating_point', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b635580>, kernel=<OpOverload(op='aten.is_floating_point', overload='default')>), <OpOverload(op='aten.output_nr', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62b4c0>, kernel=<OpOverload(op='aten.output_nr', overload='default')>), <OpOverload(op='aten.result_type', overload='Scalar_Scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62b920>, kernel=<OpOverload(op='aten.result_type', overload='Scalar_Scalar')>), <OpOverload(op='aten._thnn_differentiable_lstm_cell_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62bec0>, kernel=<OpOverload(op='aten._thnn_differentiable_lstm_cell_backward', overload='default')>), <OpOverload(op='aten.cosine_embedding_loss', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6345e0>, kernel=<OpOverload(op='aten.cosine_embedding_loss', overload='default')>), <OpOverload(op='mkldnn._is_mkldnn_acl_supported', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b642a20>, kernel=<OpOverload(op='mkldnn._is_mkldnn_acl_supported', overload='default')>), <OpOverload(op='aten.sparse_coo_tensor', overload='indices')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62a700>, kernel=<OpOverload(op='aten.sparse_coo_tensor', overload='indices')>), <OpOverload(op='aten.to_sparse_csc', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b628040>, kernel=<OpOverload(op='aten.to_sparse_csc', overload='default')>), <OpOverload(op='aten.linalg_lu_factor', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6280e0>, kernel=<OpOverload(op='aten.linalg_lu_factor', overload='default')>), <OpOverload(op='aten._choose_qparams_per_tensor', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b629800>, kernel=<OpOverload(op='aten._choose_qparams_per_tensor', overload='default')>), <OpOverload(op='aten.embedding_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b628ea0>, kernel=<OpOverload(op='aten.embedding_backward', overload='default')>), <OpOverload(op='aten.align_as', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6225c0>, kernel=<OpOverload(op='aten.align_as', overload='default')>), <OpOverload(op='aten._validate_sparse_bsc_tensor_args', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b622e80>, kernel=<OpOverload(op='aten._validate_sparse_bsc_tensor_args', overload='default')>), <OpOverload(op='aten.sparse_csr_tensor', overload='crow_col_value')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b622f20>, kernel=<OpOverload(op='aten.sparse_csr_tensor', overload='crow_col_value')>), <OpOverload(op='aten.nanquantile', overload='scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b623240>, kernel=<OpOverload(op='aten.nanquantile', overload='scalar')>), <OpOverload(op='c10d_functional.all_to_all_single', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b641f80>, kernel=<OpOverload(op='c10d_functional.all_to_all_single', overload='default')>), <OpOverload(op='aten._cast_Char', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b621260>, kernel=<OpOverload(op='aten._cast_Char', overload='default')>), <OpOverload(op='aten.dstack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61c540>, kernel=<OpOverload(op='aten.dstack', overload='default')>), <OpOverload(op='aten.linalg_multi_dot', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b621b20>, kernel=<OpOverload(op='aten.linalg_multi_dot', overload='default')>), <OpOverload(op='aten._validate_sparse_bsr_tensor_args', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b621ee0>, kernel=<OpOverload(op='aten._validate_sparse_bsr_tensor_args', overload='default')>), <OpOverload(op='aten.special_erfinv', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b623ce0>, kernel=<OpOverload(op='aten.special_erfinv', overload='default')>), <OpOverload(op='aten.adaptive_avg_pool3d', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b637d80>, kernel=<OpOverload(op='aten.adaptive_avg_pool3d', overload='default')>), <OpOverload(op='c10d_functional.all_gather_into_tensor_coalesced', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6434c0>, kernel=<OpOverload(op='c10d_functional.all_gather_into_tensor_coalesced', overload='default')>), <OpOverload(op='aten.gradient', overload='scalarint')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b640680>, kernel=<OpOverload(op='aten.gradient', overload='scalarint')>), <OpOverload(op='aten._pad_enum', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b621940>, kernel=<OpOverload(op='aten._pad_enum', overload='default')>), <OpOverload(op='aten.special_logsumexp', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b640b80>, kernel=<OpOverload(op='aten.special_logsumexp', overload='default')>), <OpOverload(op='aten.column_stack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b640f40>, kernel=<OpOverload(op='aten.column_stack', overload='default')>), <OpOverload(op='aten._debug_has_internal_overlap', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b635f80>, kernel=<OpOverload(op='aten._debug_has_internal_overlap', overload='default')>), <OpOverload(op='aten.sparse_coo_tensor', overload='indices_size')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b822200>, kernel=<OpOverload(op='aten.sparse_coo_tensor', overload='indices_size')>), <OpOverload(op='aten.linalg_inv', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b636160>, kernel=<OpOverload(op='aten.linalg_inv', overload='default')>), <OpOverload(op='aten._cast_Short', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b636840>, kernel=<OpOverload(op='aten._cast_Short', overload='default')>), <OpOverload(op='c10d_functional.all_gather_into_tensor', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b642e80>, kernel=<OpOverload(op='c10d_functional.all_gather_into_tensor', overload='default')>), <OpOverload(op='aten.adaptive_max_pool1d', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b636fc0>, kernel=<OpOverload(op='aten.adaptive_max_pool1d', overload='default')>), <OpOverload(op='aten.flatten_dense_tensors', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b637560>, kernel=<OpOverload(op='aten.flatten_dense_tensors', overload='default')>), <OpOverload(op='aten.linalg_ldl_factor', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b637880>, kernel=<OpOverload(op='aten.linalg_ldl_factor', overload='default')>), <OpOverload(op='aten.chain_matmul', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b635120>, kernel=<OpOverload(op='aten.chain_matmul', overload='default')>), <OpOverload(op='aten._thnn_differentiable_gru_cell_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b635c60>, kernel=<OpOverload(op='aten._thnn_differentiable_gru_cell_backward', overload='default')>), <OpOverload(op='profiler._record_function_enter_new', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b642d40>, kernel=<OpOverload(op='profiler._record_function_enter_new', overload='default')>), <OpOverload(op='aten.linalg_matrix_rank', overload='atol_rtol_float')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b637b00>, kernel=<OpOverload(op='aten.linalg_matrix_rank', overload='atol_rtol_float')>), <OpOverload(op='aten._cufft_set_plan_cache_max_size', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62b9c0>, kernel=<OpOverload(op='aten._cufft_set_plan_cache_max_size', overload='default')>), <OpOverload(op='aten.linalg_svd', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62bd80>, kernel=<OpOverload(op='aten.linalg_svd', overload='default')>), <OpOverload(op='aten.argsort', overload='stable')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b634040>, kernel=<OpOverload(op='aten.argsort', overload='stable')>), <OpOverload(op='aten.nuclear_norm', overload='dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b634ae0>, kernel=<OpOverload(op='aten.nuclear_norm', overload='dim')>), <OpOverload(op='inductor._alloc_from_pool', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b642980>, kernel=<OpOverload(op='inductor._alloc_from_pool', overload='default')>), <OpOverload(op='aten.gradient', overload='tensorarrayint')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b629300>, kernel=<OpOverload(op='aten.gradient', overload='tensorarrayint')>), <OpOverload(op='aten.can_cast', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62a2a0>, kernel=<OpOverload(op='aten.can_cast', overload='default')>), <OpOverload(op='aten._test_string_default', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62a7a0>, kernel=<OpOverload(op='aten._test_string_default', overload='default')>), <OpOverload(op='aten.linalg_matrix_power', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62a840>, kernel=<OpOverload(op='aten.linalg_matrix_power', overload='default')>), <OpOverload(op='aten._embedding_bag_sparse_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62aca0>, kernel=<OpOverload(op='aten._embedding_bag_sparse_backward', overload='default')>), <OpOverload(op='c10d_functional.wait_tensor', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b642160>, kernel=<OpOverload(op='c10d_functional.wait_tensor', overload='default')>), <OpOverload(op='aten.quantile', overload='scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b623ec0>, kernel=<OpOverload(op='aten.quantile', overload='scalar')>), <OpOverload(op='aten._validate_sparse_coo_tensor_args', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62b240>, kernel=<OpOverload(op='aten._validate_sparse_coo_tensor_args', overload='default')>), <OpOverload(op='aten.special_gammaincc', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6284a0>, kernel=<OpOverload(op='aten.special_gammaincc', overload='default')>), <OpOverload(op='aten._validate_sparse_csr_tensor_args', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b628680>, kernel=<OpOverload(op='aten._validate_sparse_csr_tensor_args', overload='default')>), <OpOverload(op='aten.quantized_gru_cell', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b628900>, kernel=<OpOverload(op='aten.quantized_gru_cell', overload='default')>), <OpOverload(op='aten.cosine_similarity', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b628f40>, kernel=<OpOverload(op='aten.cosine_similarity', overload='default')>), <OpOverload(op='aten._sparse_log_softmax', overload='int')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b622ac0>, kernel=<OpOverload(op='aten._sparse_log_softmax', overload='int')>), <OpOverload(op='aten.nll_loss_nd', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6231a0>, kernel=<OpOverload(op='aten.nll_loss_nd', overload='default')>), <OpOverload(op='aten.smm', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6237e0>, kernel=<OpOverload(op='aten.smm', overload='default')>), <OpOverload(op='aten.trace_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6211c0>, kernel=<OpOverload(op='aten.trace_backward', overload='default')>), <OpOverload(op='aten.slow_conv3d', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b628ae0>, kernel=<OpOverload(op='aten.slow_conv3d', overload='default')>), <OpOverload(op='aten.combinations', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6236a0>, kernel=<OpOverload(op='aten.combinations', overload='default')>), <OpOverload(op='aten._sparse_csr_tensor_unsafe', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b621bc0>, kernel=<OpOverload(op='aten._sparse_csr_tensor_unsafe', overload='default')>), <OpOverload(op='aten.inverse', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b622020>, kernel=<OpOverload(op='aten.inverse', overload='default')>), <OpOverload(op='aten.special_multigammaln', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b622160>, kernel=<OpOverload(op='aten.special_multigammaln', overload='default')>), <OpOverload(op='aten._sparse_sum', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b637c40>, kernel=<OpOverload(op='aten._sparse_sum', overload='default')>), <OpOverload(op='aten.fake_quantize_per_tensor_affine', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b640900>, kernel=<OpOverload(op='aten.fake_quantize_per_tensor_affine', overload='default')>), <OpOverload(op='aten.multilabel_margin_loss', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b640c20>, kernel=<OpOverload(op='aten.multilabel_margin_loss', overload='default')>), <OpOverload(op='aten.fake_quantize_per_channel_affine_cachemask_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62bc40>, kernel=<OpOverload(op='aten.fake_quantize_per_channel_affine_cachemask_backward', overload='default')>), <OpOverload(op='aten.embedding_sparse_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b636340>, kernel=<OpOverload(op='aten.embedding_sparse_backward', overload='default')>), <OpOverload(op='aten.special_digamma', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b636480>, kernel=<OpOverload(op='aten.special_digamma', overload='default')>), <OpOverload(op='aten.promote_types', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6368e0>, kernel=<OpOverload(op='aten.promote_types', overload='default')>), <OpOverload(op='aten.quantized_rnn_relu_cell', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b636ac0>, kernel=<OpOverload(op='aten.quantized_rnn_relu_cell', overload='default')>), <OpOverload(op='profiler._record_function_enter', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b642f20>, kernel=<OpOverload(op='profiler._record_function_enter', overload='default')>), <OpOverload(op='aten.histogramdd', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b636d40>, kernel=<OpOverload(op='aten.histogramdd', overload='default')>), <OpOverload(op='c10d_functional.all_reduce_coalesced', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b642fc0>, kernel=<OpOverload(op='c10d_functional.all_reduce_coalesced', overload='default')>), <OpOverload(op='aten.kl_div', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b637920>, kernel=<OpOverload(op='aten.kl_div', overload='default')>), <OpOverload(op='aten._weight_norm', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b634a40>, kernel=<OpOverload(op='aten._weight_norm', overload='default')>), <OpOverload(op='aten._gather_sparse_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b634ea0>, kernel=<OpOverload(op='aten._gather_sparse_backward', overload='default')>), <OpOverload(op='aten.conv_transpose1d', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b634f40>, kernel=<OpOverload(op='aten.conv_transpose1d', overload='default')>), <OpOverload(op='aten.gradient', overload='tensorarray')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6353a0>, kernel=<OpOverload(op='aten.gradient', overload='tensorarray')>), <OpOverload(op='aten.sspaddmm', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b635620>, kernel=<OpOverload(op='aten.sspaddmm', overload='default')>), <OpOverload(op='aten.take_along_dim', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6358a0>, kernel=<OpOverload(op='aten.take_along_dim', overload='default')>), <OpOverload(op='aten.linalg_matrix_rank', overload='tol_tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b635800>, kernel=<OpOverload(op='aten.linalg_matrix_rank', overload='tol_tensor')>), <OpOverload(op='aten.corrcoef', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62ae80>, kernel=<OpOverload(op='aten.corrcoef', overload='default')>), <OpOverload(op='aten.nanquantile', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62b380>, kernel=<OpOverload(op='aten.nanquantile', overload='default')>), <OpOverload(op='aten.poisson_nll_loss', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62b560>, kernel=<OpOverload(op='aten.poisson_nll_loss', overload='default')>), <OpOverload(op='aten.trapezoid', overload='dx')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62bba0>, kernel=<OpOverload(op='aten.trapezoid', overload='dx')>), <OpOverload(op='aten.matrix_exp', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b634180>, kernel=<OpOverload(op='aten.matrix_exp', overload='default')>), <OpOverload(op='aten._cufft_get_plan_cache_size', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62b600>, kernel=<OpOverload(op='aten._cufft_get_plan_cache_size', overload='default')>), <OpOverload(op='aten.to_sparse_bsr', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b634680>, kernel=<OpOverload(op='aten.to_sparse_bsr', overload='default')>), <OpOverload(op='aten.linalg_norm', overload='ord_str')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b640fe0>, kernel=<OpOverload(op='aten.linalg_norm', overload='ord_str')>), <OpOverload(op='aten.linalg_cond', overload='p_str')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6222a0>, kernel=<OpOverload(op='aten.linalg_cond', overload='p_str')>), <OpOverload(op='aten._test_check_tensor', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b634cc0>, kernel=<OpOverload(op='aten._test_check_tensor', overload='default')>), <OpOverload(op='aten.__or__', overload='Tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62a340>, kernel=<OpOverload(op='aten.__or__', overload='Tensor')>), <OpOverload(op='aten.__or__', overload='Scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b629e40>, kernel=<OpOverload(op='aten.__or__', overload='Scalar')>), <OpOverload(op='aten.conv_transpose2d', overload='input')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b629ee0>, kernel=<OpOverload(op='aten.conv_transpose2d', overload='input')>), <OpOverload(op='aten.__and__', overload='Tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62ad40>, kernel=<OpOverload(op='aten.__and__', overload='Tensor')>), <OpOverload(op='aten.__xor__', overload='Scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b620f40>, kernel=<OpOverload(op='aten.__xor__', overload='Scalar')>), <OpOverload(op='aten.__xor__', overload='Tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6214e0>, kernel=<OpOverload(op='aten.__xor__', overload='Tensor')>), <OpOverload(op='aten.arcsin', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61c7c0>, kernel=<OpOverload(op='aten.arcsin', overload='default')>), <OpOverload(op='aten.absolute', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61d580>, kernel=<OpOverload(op='aten.absolute', overload='default')>), <OpOverload(op='aten.arcsinh', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b822d40>, kernel=<OpOverload(op='aten.arcsinh', overload='default')>), <OpOverload(op='aten.arccosh', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b8234c0>, kernel=<OpOverload(op='aten.arccosh', overload='default')>), <OpOverload(op='aten.arccos', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b823600>, kernel=<OpOverload(op='aten.arccos', overload='default')>), <OpOverload(op='aten.arctanh', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b636c00>, kernel=<OpOverload(op='aten.arctanh', overload='default')>), <OpOverload(op='aten.arctan', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61c220>, kernel=<OpOverload(op='aten.arctan', overload='default')>), <OpOverload(op='aten.arctan2', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b635ee0>, kernel=<OpOverload(op='aten.arctan2', overload='default')>), <OpOverload(op='aten.clip', overload='Tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b635760>, kernel=<OpOverload(op='aten.clip', overload='Tensor')>), <OpOverload(op='aten.cummax', overload='dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6347c0>, kernel=<OpOverload(op='aten.cummax', overload='dimname')>), <OpOverload(op='aten.cummin', overload='dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62bf60>, kernel=<OpOverload(op='aten.cummin', overload='dimname')>), <OpOverload(op='aten.divide', overload='Tensor_mode')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61cf40>, kernel=<OpOverload(op='aten.divide', overload='Tensor_mode')>), <OpOverload(op='aten.divide', overload='Scalar_mode')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61d1c0>, kernel=<OpOverload(op='aten.divide', overload='Scalar_mode')>), <OpOverload(op='aten.fix', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b634360>, kernel=<OpOverload(op='aten.fix', overload='default')>), <OpOverload(op='aten.greater', overload='Scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61c360>, kernel=<OpOverload(op='aten.greater', overload='Scalar')>), <OpOverload(op='aten.greater_equal', overload='Scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b822ca0>, kernel=<OpOverload(op='aten.greater_equal', overload='Scalar')>), <OpOverload(op='aten.ldexp', overload='Tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b8223e0>, kernel=<OpOverload(op='aten.ldexp', overload='Tensor')>), <OpOverload(op='aten.kthvalue', overload='dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b620ae0>, kernel=<OpOverload(op='aten.kthvalue', overload='dimname')>), <OpOverload(op='aten.less', overload='Scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b822660>, kernel=<OpOverload(op='aten.less', overload='Scalar')>), <OpOverload(op='aten.less_equal', overload='Scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6207c0>, kernel=<OpOverload(op='aten.less_equal', overload='Scalar')>), <OpOverload(op='aten.linalg_eigvals', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b620c20>, kernel=<OpOverload(op='aten.linalg_eigvals', overload='default')>), <OpOverload(op='aten.median', overload='names_dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61e8e0>, kernel=<OpOverload(op='aten.median', overload='names_dim')>), <OpOverload(op='aten.nanmedian', overload='names_dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61df80>, kernel=<OpOverload(op='aten.nanmedian', overload='names_dim')>), <OpOverload(op='aten.mode', overload='dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b634540>, kernel=<OpOverload(op='aten.mode', overload='dimname')>), <OpOverload(op='aten.multiply', overload='Scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61c9a0>, kernel=<OpOverload(op='aten.multiply', overload='Scalar')>), <OpOverload(op='aten.negative', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61e520>, kernel=<OpOverload(op='aten.negative', overload='default')>), <OpOverload(op='aten.not_equal', overload='Tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61ccc0>, kernel=<OpOverload(op='aten.not_equal', overload='Tensor')>), <OpOverload(op='aten.not_equal', overload='Scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61cfe0>, kernel=<OpOverload(op='aten.not_equal', overload='Scalar')>), <OpOverload(op='aten.rrelu', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b9fade0>, kernel=<OpOverload(op='aten.rrelu', overload='default')>), <OpOverload(op='aten.repeat_interleave', overload='self_Tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b8237e0>, kernel=<OpOverload(op='aten.repeat_interleave', overload='self_Tensor')>), <OpOverload(op='aten.repeat_interleave', overload='self_int')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b8236a0>, kernel=<OpOverload(op='aten.repeat_interleave', overload='self_int')>), <OpOverload(op='aten.scatter', overload='dimname_src')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b8228e0>, kernel=<OpOverload(op='aten.scatter', overload='dimname_src')>), <OpOverload(op='aten.scatter', overload='dimname_value')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b822980>, kernel=<OpOverload(op='aten.scatter', overload='dimname_value')>), <OpOverload(op='aten.size', overload='Dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62af20>, kernel=<OpOverload(op='aten.size', overload='Dimname')>), <OpOverload(op='aten.size', overload='int')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6205e0>, kernel=<OpOverload(op='aten.size', overload='int')>), <OpOverload(op='aten.stride', overload='int')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b620180>, kernel=<OpOverload(op='aten.stride', overload='int')>), <OpOverload(op='aten.stride', overload='Dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b620040>, kernel=<OpOverload(op='aten.stride', overload='Dimname')>), <OpOverload(op='aten.stft', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61fba0>, kernel=<OpOverload(op='aten.stft', overload='default')>), <OpOverload(op='aten.__and__', overload='Scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62ac00>, kernel=<OpOverload(op='aten.__and__', overload='Scalar')>), <OpOverload(op='aten.sym_stride', overload='int')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61c040>, kernel=<OpOverload(op='aten.sym_stride', overload='int')>), <OpOverload(op='aten.diag', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6287c0>, kernel=<OpOverload(op='aten.diag', overload='default')>), <OpOverload(op='aten.clip', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b621580>, kernel=<OpOverload(op='aten.clip', overload='default')>), <OpOverload(op='aten.float_power', overload='Scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b637ba0>, kernel=<OpOverload(op='aten.float_power', overload='Scalar')>), <OpOverload(op='aten.float_power', overload='Tensor_Scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b637e20>, kernel=<OpOverload(op='aten.float_power', overload='Tensor_Scalar')>), <OpOverload(op='aten.float_power', overload='Tensor_Tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6405e0>, kernel=<OpOverload(op='aten.float_power', overload='Tensor_Tensor')>), <OpOverload(op='aten.square', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b635260>, kernel=<OpOverload(op='aten.square', overload='default')>), <OpOverload(op='aten.channel_shuffle', overload='default')>: <function channel_shuffle at 0x7fce34bffce0>, <OpOverload(op='aten.channel_shuffle', overload='out')>: <function channel_shuffle at 0x7fce34bffce0>, <OpOverload(op='aten.softshrink', overload='out')>: <function softshrink at 0x7fce34bffc40>, <OpOverload(op='aten.hardshrink', overload='default')>: <function hardshrink at 0x7fce34a311c0>, <OpOverload(op='aten.softshrink', overload='default')>: <function softshrink at 0x7fce34bffc40>, <OpOverload(op='aten.hardshrink', overload='out')>: <function hardshrink at 0x7fce34a311c0>, <OpOverload(op='aten.margin_ranking_loss', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61dd00>, kernel=<OpOverload(op='aten.margin_ranking_loss', overload='default')>), <OpOverload(op='aten.pairwise_distance', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b636e80>, kernel=<OpOverload(op='aten.pairwise_distance', overload='default')>), <OpOverload(op='aten.hinge_embedding_loss', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61dee0>, kernel=<OpOverload(op='aten.hinge_embedding_loss', overload='default')>), <OpOverload(op='aten.huber_loss', overload='default')>: <function huber_loss at 0x7fce34a31f80>, <OpOverload(op='aten.huber_loss', overload='out')>: <function huber_loss at 0x7fce34a31f80>, <OpOverload(op='aten.threshold', overload='default')>: <function threshold at 0x7fce34a32200>, <OpOverload(op='aten.threshold', overload='out')>: <function threshold at 0x7fce34a32200>, <OpOverload(op='aten.pdist', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b637100>, kernel=<OpOverload(op='aten.pdist', overload='default')>), <OpOverload(op='aten.celu_', overload='default')>: <function celu at 0x7fce34bff6a0>, <OpOverload(op='aten.elu_', overload='default')>: <function elu at 0x7fce34a31b20>, <OpOverload(op='aten.mish_', overload='default')>: <function mish at 0x7fce34a33ba0>, <OpOverload(op='aten.threshold_', overload='default')>: <function threshold at 0x7fce34a33e20>, <OpOverload(op='aten.special_entr', overload='default')>: <function entr at 0x7fce34a58fe0>, <OpOverload(op='aten.special_entr', overload='out')>: <function entr at 0x7fce34a58fe0>, <OpOverload(op='aten.special_log_ndtr', overload='default')>: <function log_ndtr at 0x7fce34a58900>, <OpOverload(op='aten.special_log_ndtr', overload='out')>: <function log_ndtr at 0x7fce34a58900>, <OpOverload(op='aten.special_xlog1py', overload='default')>: <function xlog1py at 0x7fce34a5a200>, <OpOverload(op='aten.special_xlog1py', overload='other_scalar')>: <function xlog1py at 0x7fce34a5a200>, <OpOverload(op='aten.special_xlog1py', overload='self_scalar')>: <function xlog1py at 0x7fce34a5a200>, <OpOverload(op='aten.special_xlog1py', overload='out')>: <function xlog1py at 0x7fce34a5a200>, <OpOverload(op='aten.special_xlog1py', overload='self_scalar_out')>: <function xlog1py at 0x7fce34a5a200>, <OpOverload(op='aten.special_xlog1py', overload='other_scalar_out')>: <function xlog1py at 0x7fce34a5a200>, <OpOverload(op='aten.mvlgamma', overload='default')>: <function multigammaln at 0x7fce34a5a520>, <OpOverload(op='aten.mvlgamma', overload='out')>: <function multigammaln at 0x7fce34a5a520>, <OpOverload(op='aten.special_ndtr', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b628220>, kernel=<OpOverload(op='aten.special_ndtr', overload='default')>), <OpOverload(op='aten.renorm', overload='default')>: <function renorm at 0x7fce34d11f80>, <OpOverload(op='aten.renorm', overload='out')>: <function renorm at 0x7fce34d11f80>, <OpOverload(op='aten.istft', overload='default')>: <function istft at 0x7fce34d120c0>, <OpOverload(op='aten.index_fill_', overload='int_Tensor')>: <function index_fill_ at 0x7fce34d13a60>, <OpOverload(op='aten.rot90', overload='default')>: <function rot90 at 0x7fce34d12ca0>, <OpOverload(op='aten.rot90', overload='out')>: <function rot90 at 0x7fce34d12ca0>, <OpOverload(op='aten.index_fill', overload='int_Tensor_out')>: <function index_fill at 0x7fce34d13c40>, <OpOverload(op='aten.index_fill', overload='int_Scalar_out')>: <function index_fill at 0x7fce34d13c40>, <OpOverload(op='aten.unbind', overload='Dimname')>: <function unbind at 0x7fce34d13600>, <OpOverload(op='aten.index_fill_', overload='int_Scalar')>: <function index_fill_ at 0x7fce34d13a60>, <OpOverload(op='aten.index_fill_', overload='Dimname_Scalar')>: <function index_fill_ at 0x7fce34d13a60>, <OpOverload(op='aten.index_fill_', overload='Dimname_Tensor')>: <function index_fill_ at 0x7fce34d13a60>, <OpOverload(op='aten.diag_embed', overload='default')>: <function diag_embed at 0x7fce34b30860>, <OpOverload(op='aten.diag_embed', overload='out')>: <function diag_embed at 0x7fce34b30860>, <OpOverload(op='aten.block_diag', overload='default')>: <function _block_diag_iterable at 0x7fce34b30c20>, <OpOverload(op='aten.block_diag', overload='out')>: <function _block_diag_iterable at 0x7fce34b30c20>, <OpOverload(op='aten.unfold_copy', overload='default')>: <function unfold_copy at 0x7fce34b31580>, <OpOverload(op='aten.unfold_copy', overload='out')>: <function unfold_copy at 0x7fce34b31580>, <OpOverload(op='aten.cumprod', overload='dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b822b60>, kernel=<OpOverload(op='aten.cumprod', overload='dimname')>), <OpOverload(op='aten.logspace', overload='Scalar_Tensor_out')>: <function logspace at 0x7fce34b33600>, <OpOverload(op='aten.logspace', overload='Tensor_Scalar_out')>: <function logspace at 0x7fce34b33600>, <OpOverload(op='aten.logspace', overload='Tensor_Tensor_out')>: <function logspace at 0x7fce34b33600>, <OpOverload(op='aten.logspace', overload='out')>: <function logspace at 0x7fce34b33600>, <OpOverload(op='aten.logspace', overload='default')>: <function logspace at 0x7fce34b33600>, <OpOverload(op='aten.lerp', overload='Scalar_out')>: <function lerp at 0x7fce34b33100>, <OpOverload(op='aten.lerp', overload='Tensor_out')>: <function lerp at 0x7fce34b33100>, <OpOverload(op='aten.logspace', overload='Scalar_Tensor')>: <function logspace at 0x7fce34b33600>, <OpOverload(op='aten.meshgrid', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62a480>, kernel=<OpOverload(op='aten.meshgrid', overload='default')>), <OpOverload(op='aten.logspace', overload='Tensor_Tensor')>: <function logspace at 0x7fce34b33600>, <OpOverload(op='aten.logspace', overload='Tensor_Scalar')>: <function logspace at 0x7fce34b33600>, <OpOverload(op='aten.meshgrid', overload='indexing')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62a160>, kernel=<OpOverload(op='aten.meshgrid', overload='indexing')>), <OpOverload(op='aten.eye', overload='default')>: <function eye at 0x7fce34b33740>, <OpOverload(op='aten.eye', overload='m')>: <function eye at 0x7fce34b33740>, <OpOverload(op='aten.eye', overload='out')>: <function eye at 0x7fce34b33740>, <OpOverload(op='aten.eye', overload='m_out')>: <function eye at 0x7fce34b33740>, <OpOverload(op='aten.masked_fill', overload='Scalar_out')>: <function masked_fill at 0x7fce34b5c5e0>, <OpOverload(op='aten.masked_fill', overload='Tensor_out')>: <function masked_fill at 0x7fce34b5c5e0>, <OpOverload(op='aten.masked_fill_', overload='Scalar')>: <function masked_fill_ at 0x7fce34b5c400>, <OpOverload(op='aten.masked_fill_', overload='Tensor')>: <function masked_fill_ at 0x7fce34b5c400>, <OpOverload(op='aten.norm', overload='Scalar')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.norm', overload='ScalarOpt_dim')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.norm', overload='names_ScalarOpt_dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b636020>, kernel=<OpOverload(op='aten.norm', overload='names_ScalarOpt_dim')>), <OpOverload(op='aten.norm', overload='ScalarOpt_dim_dtype')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.norm', overload='dtype_out')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.norm', overload='out')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.norm', overload='ScalarOpt_dtype')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.norm', overload='ScalarOpt_dtype_out')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.norm', overload='Scalar_out')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.norm', overload='names_ScalarOpt_dim_dtype')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b637060>, kernel=<OpOverload(op='aten.norm', overload='names_ScalarOpt_dim_dtype')>), <OpOverload(op='aten.norm', overload='names_dtype_out')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.norm', overload='names_out')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.trace', overload='default')>: <function trace at 0x7fce34b5cd60>, <OpOverload(op='aten.trace', overload='out')>: <function trace at 0x7fce34b5cd60>, <OpOverload(op='aten.count_nonzero', overload='dim_IntList')>: <function count_nonzero at 0x7fce34b5dc60>, <OpOverload(op='aten.count_nonzero', overload='dim_IntList_out')>: <function count_nonzero at 0x7fce34b5dc60>, <OpOverload(op='aten.count_nonzero', overload='default')>: <function count_nonzero at 0x7fce34b5dc60>, <OpOverload(op='aten.count_nonzero', overload='out')>: <function count_nonzero at 0x7fce34b5dc60>, <OpOverload(op='aten.vdot', overload='default')>: <function vdot at 0x7fce34b5f4c0>, <OpOverload(op='aten.vdot', overload='out')>: <function vdot at 0x7fce34b5f4c0>, <OpOverload(op='aten.addcmul_', overload='default')>: <function addcmul at 0x7fce34b5fa60>, <OpOverload(op='aten.addcdiv_', overload='default')>: <function addcdiv at 0x7fce34b5fba0>, <OpOverload(op='aten.xlogy_', overload='Scalar_Other')>: <function xlogy at 0x7fce34b8fba0>, <OpOverload(op='aten.deg2rad_', overload='default')>: <function deg2rad at 0x7fce34b8cf40>, <OpOverload(op='aten.frac_', overload='default')>: <function frac at 0x7fce34b8d9e0>, <OpOverload(op='aten.heaviside_', overload='default')>: <function heaviside at 0x7fce34b8dee0>, <OpOverload(op='aten.xlogy_', overload='Tensor')>: <function xlogy at 0x7fce34b8fba0>, <OpOverload(op='aten.lerp_', overload='Scalar')>: <function lerp at 0x7fce34b5f6a0>, <OpOverload(op='aten.lerp_', overload='Tensor')>: <function lerp at 0x7fce34b5f6a0>, <OpOverload(op='aten.mvlgamma_', overload='default')>: <function _make_alias.<locals>._fn at 0x7fce34b8c180>, <OpOverload(op='aten.nan_to_num_', overload='default')>: <function nan_to_num at 0x7fce34b8c680>, <OpOverload(op='aten.triu_', overload='default')>: <function triu at 0x7fce34b8fec0>, <OpOverload(op='aten.rad2deg_', overload='default')>: <function rad2deg at 0x7fce34b8eac0>, <OpOverload(op='aten.sgn_', overload='default')>: <function sgn at 0x7fce34b8efc0>, <OpOverload(op='aten.tril_', overload='default')>: <function tril at 0x7fce34b8fd80>, <OpOverload(op='aten.sinc_', overload='default')>: <function sinc at 0x7fce34b8f4c0>, <OpOverload(op='aten.zero_', overload='default')>: <function zero at 0x7fce34b8ef20>, <OpOverload(op='aten.alias_copy', overload='default')>: <function PyCapsule.alias at 0x7fce34b8ea20>, <OpOverload(op='aten.alias_copy', overload='out')>: <function PyCapsule.alias at 0x7fce34b8ea20>, <OpOverload(op='aten.as_strided_copy', overload='default')>: <function PyCapsule.as_strided at 0x7fce34b8c900>, <OpOverload(op='aten.as_strided_copy', overload='out')>: <function PyCapsule.as_strided at 0x7fce34b8c900>, <OpOverload(op='aten.transpose_copy', overload='int_out')>: <function PyCapsule.transpose at 0x7fce34b8e200>, <OpOverload(op='aten.expand_copy', overload='default')>: <function PyCapsule.expand at 0x7fce34b8df80>, <OpOverload(op='aten.expand_copy', overload='out')>: <function PyCapsule.expand at 0x7fce34b8df80>, <OpOverload(op='aten.transpose_copy', overload='int')>: <function PyCapsule.transpose at 0x7fce34b8e200>, <OpOverload(op='aten.narrow_copy', overload='default')>: <function PyCapsule.narrow at 0x7fce34b5fc40>, <OpOverload(op='aten.narrow_copy', overload='out')>: <function PyCapsule.narrow at 0x7fce34b5fc40>, <OpOverload(op='aten.squeeze_copy', overload='default')>: <function PyCapsule.squeeze at 0x7fce34bcc180>, <OpOverload(op='aten.squeeze_copy', overload='dim')>: <function PyCapsule.squeeze at 0x7fce34bcc180>, <OpOverload(op='aten.squeeze_copy', overload='dims')>: <function PyCapsule.squeeze at 0x7fce34bcc180>, <OpOverload(op='aten.squeeze_copy', overload='out')>: <function PyCapsule.squeeze at 0x7fce34bcc180>, <OpOverload(op='aten.squeeze_copy', overload='dim_out')>: <function PyCapsule.squeeze at 0x7fce34bcc180>, <OpOverload(op='aten.squeeze_copy', overload='dims_out')>: <function PyCapsule.squeeze at 0x7fce34bcc180>, <OpOverload(op='aten.permute_copy', overload='default')>: <function PyCapsule.permute at 0x7fce34bcc400>, <OpOverload(op='aten.permute_copy', overload='out')>: <function PyCapsule.permute at 0x7fce34bcc400>, <OpOverload(op='aten.t_copy', overload='default')>: <function PyCapsule.t at 0x7fce34bcc680>, <OpOverload(op='aten.t_copy', overload='out')>: <function PyCapsule.t at 0x7fce34bcc680>, <OpOverload(op='aten.unsqueeze_copy', overload='default')>: <function PyCapsule.unsqueeze at 0x7fce34b8c400>, <OpOverload(op='aten.unsqueeze_copy', overload='out')>: <function PyCapsule.unsqueeze at 0x7fce34b8c400>, <OpOverload(op='aten.fft_fft', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b634e00>, kernel=<OpOverload(op='aten.fft_fft', overload='default')>), <OpOverload(op='aten.fft_ifft', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b635b20>, kernel=<OpOverload(op='aten.fft_ifft', overload='default')>), <OpOverload(op='aten.fft_rfft', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62b740>, kernel=<OpOverload(op='aten.fft_rfft', overload='default')>), <OpOverload(op='aten.fft_irfft', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b62bce0>, kernel=<OpOverload(op='aten.fft_irfft', overload='default')>), <OpOverload(op='aten.fft_ifft2', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61eca0>, kernel=<OpOverload(op='aten.fft_ifft2', overload='default')>), <OpOverload(op='aten.fft_hfft', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61c900>, kernel=<OpOverload(op='aten.fft_hfft', overload='default')>), <OpOverload(op='aten.fft_ihfft', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61d4e0>, kernel=<OpOverload(op='aten.fft_ihfft', overload='default')>), <OpOverload(op='aten.fft_fftn', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61c5e0>, kernel=<OpOverload(op='aten.fft_fftn', overload='default')>), <OpOverload(op='aten.fft_ifftn', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b822de0>, kernel=<OpOverload(op='aten.fft_ifftn', overload='default')>), <OpOverload(op='aten.fft_rfftn', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b823880>, kernel=<OpOverload(op='aten.fft_rfftn', overload='default')>), <OpOverload(op='aten.fft_ihfftn', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b822840>, kernel=<OpOverload(op='aten.fft_ihfftn', overload='default')>), <OpOverload(op='aten.fft_irfftn', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6209a0>, kernel=<OpOverload(op='aten.fft_irfftn', overload='default')>), <OpOverload(op='aten.fft_hfftn', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61f7e0>, kernel=<OpOverload(op='aten.fft_hfftn', overload='default')>), <OpOverload(op='aten.fft_fft2', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6200e0>, kernel=<OpOverload(op='aten.fft_fft2', overload='default')>), <OpOverload(op='aten.fft_rfft2', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61ee80>, kernel=<OpOverload(op='aten.fft_rfft2', overload='default')>), <OpOverload(op='aten.fft_irfft2', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61f4c0>, kernel=<OpOverload(op='aten.fft_irfft2', overload='default')>), <OpOverload(op='aten.fft_hfft2', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61e200>, kernel=<OpOverload(op='aten.fft_hfft2', overload='default')>), <OpOverload(op='aten.fft_ihfft2', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61ca40>, kernel=<OpOverload(op='aten.fft_ihfft2', overload='default')>), <OpOverload(op='aten.fft_fftshift', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61d120>, kernel=<OpOverload(op='aten.fft_fftshift', overload='default')>), <OpOverload(op='aten.fft_ifftshift', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61d300>, kernel=<OpOverload(op='aten.fft_ifftshift', overload='default')>), <OpOverload(op='aten.is_complex', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61e480>, kernel=<OpOverload(op='aten.is_complex', overload='default')>), <OpOverload(op='aten.zero', overload='default')>: <function zero at 0x7fce34c6c220>, <OpOverload(op='aten.zero', overload='out')>: <function zero at 0x7fce34c6c220>, <OpOverload(op='aten.nan_to_num', overload='default')>: <function nan_to_num at 0x7fce34c6ff60>, <OpOverload(op='aten.nan_to_num', overload='out')>: <function nan_to_num at 0x7fce34c6ff60>, <OpOverload(op='aten.sgn', overload='default')>: <function sgn at 0x7fce34c89440>, <OpOverload(op='aten.sgn', overload='out')>: <function sgn at 0x7fce34c89440>, <OpOverload(op='aten.rsub', overload='Tensor')>: <function rsub at 0x7fce34cbbb00>, <OpOverload(op='aten.rsub', overload='Scalar')>: <function rsub at 0x7fce34cbbb00>, <OpOverload(op='aten.rsub', overload='Tensor_out')>: <function rsub at 0x7fce34cbbb00>, <OpOverload(op='aten.rsub', overload='Scalar_out')>: <function rsub at 0x7fce34cbbb00>, <OpOverload(op='aten.xlogy', overload='OutTensor')>: <function xlogy at 0x7fce34cd44a0>, <OpOverload(op='aten.xlogy', overload='OutScalar_Self')>: <function xlogy at 0x7fce34cd44a0>, <OpOverload(op='aten.xlogy', overload='OutScalar_Other')>: <function xlogy at 0x7fce34cd44a0>, <OpOverload(op='aten.std', overload='correction_names')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61f740>, kernel=<OpOverload(op='aten.std', overload='correction_names')>), <OpOverload(op='aten.std', overload='correction_names_out')>: <function std at 0x7fce34cd7240>, <OpOverload(op='aten.std', overload='correction_out')>: <function std at 0x7fce34cd7240>, <OpOverload(op='aten.std', overload='out')>: <function std at 0x7fce34cd7240>, <OpOverload(op='aten.std', overload='names_out')>: <function std at 0x7fce34cd7240>, <OpOverload(op='aten.std', overload='correction')>: <function std at 0x7fce34cd7240>, <OpOverload(op='aten.std', overload='names_dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b823420>, kernel=<OpOverload(op='aten.std', overload='names_dim')>), <OpOverload(op='aten.std', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61de40>, kernel=<OpOverload(op='aten.std', overload='default')>), <OpOverload(op='aten.std', overload='dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61ea20>, kernel=<OpOverload(op='aten.std', overload='dim')>), <OpOverload(op='aten.std_mean', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61d8a0>, kernel=<OpOverload(op='aten.std_mean', overload='default')>), <OpOverload(op='aten.std_mean', overload='dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b8239c0>, kernel=<OpOverload(op='aten.std_mean', overload='dim')>), <OpOverload(op='aten.std_mean', overload='correction')>: <function std_mean at 0x7fce34cd5440>, <OpOverload(op='aten.std_mean', overload='names_dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b823ba0>, kernel=<OpOverload(op='aten.std_mean', overload='names_dim')>), <OpOverload(op='aten.std_mean', overload='correction_names')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b823c40>, kernel=<OpOverload(op='aten.std_mean', overload='correction_names')>), <OpOverload(op='aten.std_mean', overload='correction_out')>: <function std_mean at 0x7fce34cd5440>, <OpOverload(op='aten.var_mean', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b823060>, kernel=<OpOverload(op='aten.var_mean', overload='default')>), <OpOverload(op='aten.var_mean', overload='dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b8231a0>, kernel=<OpOverload(op='aten.var_mean', overload='dim')>), <OpOverload(op='aten.var_mean', overload='names_dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b823380>, kernel=<OpOverload(op='aten.var_mean', overload='names_dim')>), <OpOverload(op='aten.var_mean', overload='correction_names')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b823560>, kernel=<OpOverload(op='aten.var_mean', overload='correction_names')>), <OpOverload(op='aten.broadcast_tensors', overload='default')>: <function broadcast_tensors at 0x7fce34d10360>, <OpOverload(op='aten.index_fill', overload='Dimname_Tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61eb60>, kernel=<OpOverload(op='aten.index_fill', overload='Dimname_Tensor')>), <OpOverload(op='aten.index_fill', overload='Dimname_Scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61f420>, kernel=<OpOverload(op='aten.index_fill', overload='Dimname_Scalar')>), <OpOverload(op='aten.index_fill', overload='int_Scalar')>: <function index_fill at 0x7fce34d13c40>, <OpOverload(op='aten.index_fill', overload='int_Tensor')>: <function index_fill at 0x7fce34d13c40>, <OpOverload(op='aten.stft', overload='center')>: <function stft at 0x7fce34d11da0>, <OpOverload(op='aten.silu_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b629580>, kernel=<OpOverload(op='aten.silu_backward', overload='default')>), <OpOverload(op='aten.silu_backward', overload='grad_input')>: <function silu_backward at 0x7fce34d20680>, <OpOverload(op='aten._prelu_kernel_backward', overload='default')>: <function _prelu_kernel_backward at 0x7fce34d20a40>, <OpOverload(op='aten.log_sigmoid_backward', overload='default')>: <function log_sigmoid_backward at 0x7fce34ee77e0>, <OpOverload(op='aten.log_sigmoid_backward', overload='grad_input')>: <function log_sigmoid_backward at 0x7fce34ee77e0>, <OpOverload(op='aten.mse_loss_backward', overload='default')>: <function mse_loss_backward at 0x7fce34d20fe0>, <OpOverload(op='aten.mse_loss_backward', overload='grad_input')>: <function mse_loss_backward at 0x7fce34d20fe0>, <OpOverload(op='aten._safe_softmax', overload='default')>: <function safe_softmax at 0x7fce34d21300>, <OpOverload(op='aten.smooth_l1_loss_backward', overload='default')>: <function smooth_l1_loss_backward at 0x7fce34d21800>, <OpOverload(op='aten.smooth_l1_loss', overload='default')>: <function smooth_l1_loss at 0x7fce34d21760>, <OpOverload(op='aten.smooth_l1_loss_backward', overload='grad_input')>: <function smooth_l1_loss_backward_out at 0x7fce34d219e0>, <OpOverload(op='aten.smooth_l1_loss', overload='out')>: <function smooth_l1_loss at 0x7fce34d21760>, <OpOverload(op='aten.binary_cross_entropy_backward', overload='grad_input')>: <function binary_cross_entropy_backward at 0x7fce34d22d40>, <OpOverload(op='aten.huber_loss_backward', overload='default')>: <function huber_loss_backward at 0x7fce34d21bc0>, <OpOverload(op='aten.huber_loss_backward', overload='out')>: <function huber_loss_backward_out at 0x7fce34d21da0>, <OpOverload(op='aten.binary_cross_entropy_backward', overload='default')>: <function binary_cross_entropy_backward at 0x7fce34d22d40>, <OpOverload(op='aten.glu_backward', overload='default')>: <function glu_backward at 0x7fce34d22020>, <OpOverload(op='aten.glu_backward', overload='grad_input')>: <function glu_backward at 0x7fce34d22020>, <OpOverload(op='aten.nll_loss_backward', overload='default')>: <function nll_loss_backward at 0x7fce34d223e0>, <OpOverload(op='aten.nll_loss_backward', overload='grad_input')>: <function nll_loss_backward at 0x7fce34d223e0>, <OpOverload(op='aten.nll_loss2d_backward', overload='default')>: <function nll_loss2d_backward at 0x7fce34d22700>, <OpOverload(op='aten.nll_loss2d_backward', overload='grad_input')>: <function nll_loss2d_backward at 0x7fce34d22700>, <OpOverload(op='aten.binary_cross_entropy', overload='default')>: <function binary_cross_entropy at 0x7fce34d22ca0>, <OpOverload(op='aten.binary_cross_entropy', overload='out')>: <function binary_cross_entropy at 0x7fce34d22ca0>, <OpOverload(op='aten.soft_margin_loss', overload='default')>: <function soft_margin_loss at 0x7fce34d21940>, <OpOverload(op='aten.soft_margin_loss', overload='out')>: <function soft_margin_loss at 0x7fce34d21940>, <OpOverload(op='aten.soft_margin_loss_backward', overload='default')>: <function soft_margin_loss_backward at 0x7fce34d216c0>, <OpOverload(op='aten.soft_margin_loss_backward', overload='grad_input')>: <function soft_margin_loss_backward at 0x7fce34d216c0>, <OpOverload(op='aten.dist', overload='default')>: <function dist at 0x7fce34d231a0>, <OpOverload(op='aten.dist', overload='out')>: <function dist at 0x7fce34d231a0>, <OpOverload(op='aten._euclidean_dist', overload='default')>: <function _euclidean_dist at 0x7fce34d23420>, <OpOverload(op='aten._euclidean_dist', overload='out')>: <function _euclidean_dist at 0x7fce34d23420>, <OpOverload(op='aten.slice_backward', overload='default')>: <function slice_backward at 0x7fce34d236a0>, <OpOverload(op='aten.slice_backward', overload='out')>: <function slice_backward at 0x7fce34d236a0>, <OpOverload(op='aten.select_backward', overload='default')>: <function select_backward at 0x7fce34d23d80>, <OpOverload(op='aten.select_backward', overload='out')>: <function select_backward at 0x7fce34d23d80>, <OpOverload(op='aten.diagonal_backward', overload='default')>: <function diagonal_backward at 0x7fce34d23f60>, <OpOverload(op='aten.diagonal_backward', overload='out')>: <function diagonal_backward at 0x7fce34d23f60>, <OpOverload(op='aten._softmax_backward_data', overload='default')>: <function _softmax_backward_data at 0x7fce34d48180>, <OpOverload(op='aten._softmax_backward_data', overload='out')>: <function _softmax_backward_data at 0x7fce34d48180>, <OpOverload(op='aten._log_softmax_backward_data', overload='default')>: <function _log_softmax_backward_data at 0x7fce34d487c0>, <OpOverload(op='aten._log_softmax_backward_data', overload='out')>: <function _log_softmax_backward_data at 0x7fce34d487c0>, <OpOverload(op='aten.logit_backward', overload='default')>: <function logit_backward at 0x7fce34d48720>, <OpOverload(op='aten.native_dropout_backward', overload='default')>: <function native_dropout_backward at 0x7fce34d21b20>, <OpOverload(op='aten.native_dropout_backward', overload='out')>: <function native_dropout_backward at 0x7fce34d21b20>, <OpOverload(op='aten.unfold_backward', overload='default')>: <function unfold_backward at 0x7fce34d48a40>, <OpOverload(op='aten.unfold_backward', overload='out')>: <function unfold_backward at 0x7fce34d48a40>, <OpOverload(op='aten._addmm_activation', overload='out')>: <function _addmm_activation at 0x7fce34d4a840>, <OpOverload(op='aten._chunk_cat', overload='default')>: <function _chunk_cat at 0x7fce34d4a340>, <OpOverload(op='aten._addmm_activation', overload='default')>: <function _addmm_activation at 0x7fce34d4a840>, <OpOverload(op='aten._chunk_cat', overload='out')>: <function _chunk_cat at 0x7fce34d4a340>, <OpOverload(op='aten.embedding_dense_backward', overload='default')>: <function embedding_dense_backward at 0x7fce34d4a020>, <OpOverload(op='aten.embedding_dense_backward', overload='out')>: <function embedding_dense_backward at 0x7fce34d4a020>, <OpOverload(op='aten.split_with_sizes_copy', overload='default')>: <function split_with_sizes_copy at 0x7fce34d4a3e0>, <OpOverload(op='aten.split_with_sizes_copy', overload='out')>: <function split_with_sizes_copy at 0x7fce34d4a3e0>, <OpOverload(op='aten.unsafe_split_with_sizes', overload='default')>: <function unsafe_split_with_sizes at 0x7fce34d4a660>, <OpOverload(op='aten.native_group_norm_backward', overload='default')>: <function native_group_norm_backward at 0x7fce34d49a80>, <OpOverload(op='aten.native_group_norm_backward', overload='out')>: <function native_group_norm_backward_out at 0x7fce34d49800>, <OpOverload(op='aten.native_layer_norm_backward', overload='default')>: <function native_layer_norm_backward at 0x7fce34d48b80>, <OpOverload(op='aten.native_layer_norm_backward', overload='out')>: <function native_layer_norm_backward_out at 0x7fce34d4ae80>, <OpOverload(op='aten.batch_norm_backward', overload='default')>: <function batch_norm_backward at 0x7fce34d70e00>, <OpOverload(op='aten.cudnn_batch_norm', overload='default')>: <function cudnn_batch_norm at 0x7fce34d4bce0>, <OpOverload(op='aten._batch_norm_with_update', overload='default')>: <function _batch_norm_with_update at 0x7fce34d70040>, <OpOverload(op='aten._batch_norm_with_update_functional', overload='default')>: <function _batch_norm_with_update_functional at 0x7fce34d700e0>, <OpOverload(op='aten._batch_norm_no_update', overload='default')>: <function _batch_norm_no_update at 0x7fce34d70220>, <OpOverload(op='aten.lift', overload='out')>: <function nop_decomposition at 0x7fce34d71120>, <OpOverload(op='aten._fused_dropout', overload='default')>: <function _fused_dropout_decomposition at 0x7fce34d70ae0>, <OpOverload(op='aten._fused_dropout', overload='out')>: <function _fused_dropout_decomposition at 0x7fce34d70ae0>, <OpOverload(op='aten.lift', overload='default')>: <function nop_decomposition at 0x7fce34d71120>, <OpOverload(op='aten.index_copy', overload='dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b620ea0>, kernel=<OpOverload(op='aten.index_copy', overload='dimname')>), <OpOverload(op='aten.cudnn_batch_norm', overload='out')>: <function cudnn_batch_norm at 0x7fce34d4bce0>, <OpOverload(op='aten.native_batch_norm_backward', overload='default')>: <function native_batch_norm_backward at 0x7fce34d70c20>, <OpOverload(op='aten.native_batch_norm_backward', overload='out')>: <function native_batch_norm_backward_out at 0x7fce34d702c0>, <OpOverload(op='aten.index_copy', overload='default')>: <function index_copy at 0x7fce34d72840>, <OpOverload(op='aten.miopen_batch_norm_backward', overload='default')>: <function miopen_batch_norm_backward at 0x7fce34d71800>, <OpOverload(op='aten.miopen_batch_norm_backward', overload='out')>: <function miopen_batch_norm_backward at 0x7fce34d71800>, <OpOverload(op='aten.cudnn_batch_norm_backward', overload='default')>: <function cudnn_batch_norm_backward at 0x7fce34d71ee0>, <OpOverload(op='aten.cudnn_batch_norm_backward', overload='out')>: <function cudnn_batch_norm_backward at 0x7fce34d71ee0>, <OpOverload(op='aten._adaptive_avg_pool2d', overload='default')>: <function adaptive_avg_pool2d at 0x7fce34d72340>, <OpOverload(op='aten._adaptive_avg_pool2d', overload='out')>: <function adaptive_avg_pool2d at 0x7fce34d72340>, <OpOverload(op='aten.max_unpool2d', overload='default')>: <function max_unpool2d at 0x7fce34d72660>, <OpOverload(op='aten.max_unpool2d', overload='out')>: <function max_unpool2d at 0x7fce34d72660>, <OpOverload(op='aten.max_unpool3d', overload='default')>: <function max_unpool3d at 0x7fce34d728e0>, <OpOverload(op='aten.max_unpool3d', overload='out')>: <function max_unpool3d at 0x7fce34d728e0>, <OpOverload(op='aten.index_add_', overload='default')>: <function index_add_ at 0x7fce34d72700>, <OpOverload(op='aten.pad_sequence', overload='default')>: <function pad_sequence at 0x7fce34d72de0>, <OpOverload(op='aten.index_add', overload='default')>: <function index_add at 0x7fce34d72ca0>, <OpOverload(op='aten.index_add', overload='out')>: <function index_add at 0x7fce34d72ca0>, <OpOverload(op='aten.index_add', overload='dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b629bc0>, kernel=<OpOverload(op='aten.index_add', overload='dimname')>), <OpOverload(op='aten.index_copy', overload='out')>: <function index_copy at 0x7fce34d72840>, <OpOverload(op='aten.index_copy_', overload='default')>: <function index_copy_ at 0x7fce34d72d40>, <OpOverload(op='aten.index_copy_', overload='dimname')>: <function index_copy_ at 0x7fce34d72d40>, <OpOverload(op='aten.log_sigmoid_forward', overload='default')>: <function log_sigmoid_forward at 0x7fce34d731a0>, <OpOverload(op='aten.log_sigmoid_forward', overload='output')>: <function log_sigmoid_forward at 0x7fce34d731a0>, <OpOverload(op='aten.gru', overload='input')>: <function gru_impl at 0x7fce34d9e340>, <OpOverload(op='aten.uniform_', overload='default')>: <function uniform_ at 0x7fce34d73380>, <OpOverload(op='aten._upsample_nearest_exact1d', overload='vec')>: <function _upsample_nearest_exact_vec at 0x7fce34d9c180>, <OpOverload(op='aten.gru', overload='data')>: <function gru_impl_data at 0x7fce34d9e160>, <OpOverload(op='aten._upsample_nearest_exact2d', overload='vec')>: <function _upsample_nearest_exact_vec at 0x7fce34d9c180>, <OpOverload(op='aten._upsample_nearest_exact3d', overload='vec')>: <function _upsample_nearest_exact_vec at 0x7fce34d9c180>, <OpOverload(op='aten._upsample_nearest_exact1d', overload='default')>: <function upsample_nearest_exact1d at 0x7fce34d9c860>, <OpOverload(op='aten._upsample_nearest_exact1d', overload='out')>: <function upsample_nearest_exact1d at 0x7fce34d9c860>, <OpOverload(op='aten.lstm', overload='data')>: <function lstm_data_impl at 0x7fce34d9de40>, <OpOverload(op='aten.lstm', overload='input')>: <function lstm_impl at 0x7fce34d9c7c0>, <OpOverload(op='aten._upsample_nearest_exact2d', overload='default')>: <function _upsample_nearest_exact2d at 0x7fce34d9cea0>, <OpOverload(op='aten._upsample_nearest_exact2d', overload='out')>: <function _upsample_nearest_exact2d at 0x7fce34d9cea0>, <OpOverload(op='aten._upsample_nearest_exact3d', overload='default')>: <function _upsample_nearest_exact3d at 0x7fce34d9d4e0>, <OpOverload(op='aten._upsample_nearest_exact3d', overload='out')>: <function _upsample_nearest_exact3d at 0x7fce34d9d4e0>, <OpOverload(op='aten.rnn_tanh', overload='input')>: <function rnn_tanh_input at 0x7fce34d9dd00>, <OpOverload(op='aten.rnn_relu', overload='input')>: <function rnn_relu_input at 0x7fce34d73c40>, <OpOverload(op='aten.rnn_relu', overload='data')>: <function rnn_relu_data at 0x7fce34d736a0>, <OpOverload(op='aten.rnn_tanh', overload='data')>: <function rnn_tanh_data at 0x7fce34d72a20>, <OpOverload(op='aten._upsample_bilinear2d_aa', overload='vec')>: <function upsample_bilinear2d_aa_vec at 0x7fce34d9e520>, <OpOverload(op='aten.affine_grid_generator', overload='default')>: <function affine_grid_generator at 0x7fce34db4ae0>, <OpOverload(op='aten._upsample_bicubic2d_aa', overload='vec')>: <function upsample_bicubic2d_aa_vec at 0x7fce34d9e700>, <OpOverload(op='aten._reshape_alias', overload='default')>: <function _reshape_alias at 0x7fce34d9fb00>, <OpOverload(op='aten._unsafe_masked_index', overload='default')>: <function _unsafe_masked_index at 0x7fce34d9fce0>, <OpOverload(op='aten._unsafe_masked_index_put_accumulate', overload='default')>: <function _unsafe_masked_index_put_accumulate at 0x7fce34d9fe20>, <OpOverload(op='aten.nll_loss2d_forward', overload='output')>: <function nll_loss2d_forward at 0x7fce34d9e840>, <OpOverload(op='aten.nll_loss2d_forward', overload='default')>: <function nll_loss2d_forward at 0x7fce34d9e840>, <OpOverload(op='aten.affine_grid_generator', overload='out')>: <function affine_grid_generator at 0x7fce34db4ae0>, <OpOverload(op='aten._weight_norm_interface', overload='out')>: <function _weight_norm_interface at 0x7fce34de4a40>, <OpOverload(op='aten.binary_cross_entropy_with_logits', overload='default')>: <function binary_cross_entropy_with_logits at 0x7fce34db5440>, <OpOverload(op='aten.binary_cross_entropy_with_logits', overload='out')>: <function binary_cross_entropy_with_logits at 0x7fce34db5440>, <OpOverload(op='aten.reflection_pad3d', overload='default')>: <function _reflection_pad at 0x7fce34db6160>, <OpOverload(op='aten.reflection_pad3d', overload='out')>: <function _reflection_pad at 0x7fce34db6160>, <OpOverload(op='aten.reflection_pad3d_backward', overload='default')>: <function _reflection_pad_backward at 0x7fce34db6700>, <OpOverload(op='aten.reflection_pad3d_backward', overload='grad_input')>: <function _reflection_pad_backward at 0x7fce34db6700>, <OpOverload(op='aten.reflection_pad2d_backward', overload='default')>: <function _reflection_pad_backward at 0x7fce34db62a0>, <OpOverload(op='aten.reflection_pad2d_backward', overload='grad_input')>: <function _reflection_pad_backward at 0x7fce34db62a0>, <OpOverload(op='aten.reflection_pad1d_backward', overload='default')>: <function _reflection_pad_backward at 0x7fce34db62a0>, <OpOverload(op='aten.reflection_pad1d_backward', overload='grad_input')>: <function _reflection_pad_backward at 0x7fce34db62a0>, <OpOverload(op='aten.aminmax', overload='default')>: <function aminmax at 0x7fce34db6ac0>, <OpOverload(op='aten.aminmax', overload='out')>: <function aminmax at 0x7fce34db6ac0>, <OpOverload(op='aten.nansum', overload='default')>: <function nansum at 0x7fce34db6e80>, <OpOverload(op='aten.nansum', overload='out')>: <function nansum at 0x7fce34db6e80>, <OpOverload(op='aten.multi_margin_loss', overload='default')>: <function multi_margin_loss at 0x7fce34db7740>, <OpOverload(op='aten.multi_margin_loss', overload='out')>: <function multi_margin_loss at 0x7fce34db7740>, <OpOverload(op='aten.multilabel_margin_loss_forward', overload='default')>: <function multilabel_margin_loss_forward at 0x7fce34db7e20>, <OpOverload(op='aten.multilabel_margin_loss_forward', overload='output')>: <function multilabel_margin_loss_forward at 0x7fce34db7e20>, <OpOverload(op='aten.isin', overload='Scalar_Tensor')>: <function isin at 0x7fce34db6de0>, <OpOverload(op='aten.isin', overload='Tensor_Scalar_out')>: <function isin at 0x7fce34db6de0>, <OpOverload(op='aten.isin', overload='Tensor_Scalar')>: <function isin at 0x7fce34db6de0>, <OpOverload(op='aten.isin', overload='Tensor_Tensor_out')>: <function isin at 0x7fce34db6de0>, <OpOverload(op='aten.isin', overload='Tensor_Tensor')>: <function isin at 0x7fce34db6de0>, <OpOverload(op='aten._weight_norm_interface', overload='default')>: <function _weight_norm_interface at 0x7fce34de4a40>, <OpOverload(op='aten.isin', overload='Scalar_Tensor_out')>: <function isin at 0x7fce34db6de0>, <OpOverload(op='aten.take', overload='default')>: <function take at 0x7fce34de4c20>, <OpOverload(op='aten.take', overload='out')>: <function take at 0x7fce34de4c20>, <OpOverload(op='aten.resize_as', overload='default')>: <function resize_as at 0x7fce34de4040>, <OpOverload(op='aten.resize_as', overload='out')>: <function resize_as at 0x7fce34de4040>, <OpOverload(op='aten.addbmm_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de4ae0>, <OpOverload(op='aten.addmm_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de4860>, <OpOverload(op='aten.addmv_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de4400>, <OpOverload(op='aten.round_', overload='decimals')>: <function register_inplace.<locals>.inplace_op at 0x7fce34db68e0>, <OpOverload(op='aten.baddbmm_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de4d60>, <OpOverload(op='aten.round_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34db68e0>, <OpOverload(op='aten.fill_', overload='Scalar')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de4ea0>, <OpOverload(op='aten.fill_', overload='Tensor')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de4ea0>, <OpOverload(op='aten.gelu_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de4fe0>, <OpOverload(op='aten.hardswish_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5120>, <OpOverload(op='aten.hardtanh_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5260>, <OpOverload(op='aten.hardsigmoid_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de53a0>, <OpOverload(op='aten.__iand__', overload='Tensor')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de54e0>, <OpOverload(op='aten.__iand__', overload='Scalar')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de54e0>, <OpOverload(op='aten.renorm_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de6160>, <OpOverload(op='aten.__ilshift__', overload='Tensor')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5620>, <OpOverload(op='aten.__ilshift__', overload='Scalar')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5620>, <OpOverload(op='aten.index_reduce_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de58a0>, <OpOverload(op='aten.__ior__', overload='Tensor')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de59e0>, <OpOverload(op='aten.__ior__', overload='Scalar')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de59e0>, <OpOverload(op='aten.scatter_', overload='value_reduce')>: <function register_inplace.<locals>.inplace_op at 0x7fce34db7060>, <OpOverload(op='aten.__irshift__', overload='Tensor')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5b20>, <OpOverload(op='aten.__irshift__', overload='Scalar')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5b20>, <OpOverload(op='aten.__ixor__', overload='Tensor')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5c60>, <OpOverload(op='aten.__ixor__', overload='Scalar')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5c60>, <OpOverload(op='aten.scatter_', overload='reduce')>: <function register_inplace.<locals>.inplace_op at 0x7fce34db7060>, <OpOverload(op='aten.leaky_relu_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5da0>, <OpOverload(op='aten.logit_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5ee0>, <OpOverload(op='aten.relu_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de6020>, <OpOverload(op='aten.scatter_', overload='src')>: <function register_inplace.<locals>.inplace_op at 0x7fce34db7060>, <OpOverload(op='aten.scatter_', overload='value')>: <function register_inplace.<locals>.inplace_op at 0x7fce34db7060>, <OpOverload(op='aten.scatter_add_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de6340>, <OpOverload(op='aten.scatter_reduce_', overload='two')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de60c0>, <OpOverload(op='aten.silu_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5e40>, <OpOverload(op='aten.tanh_backward', overload='default')>: <function tanh_backward at 0x7fce34ee5940>, <OpOverload(op='aten.where', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61c0e0>, kernel=<OpOverload(op='aten.where', overload='default')>), <OpOverload(op='aten.prod', overload='dim_Dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61e0c0>, kernel=<OpOverload(op='aten.prod', overload='dim_Dimname')>), <OpOverload(op='aten.var', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b629260>, kernel=<OpOverload(op='aten.var', overload='default')>), <OpOverload(op='aten.var', overload='dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b629da0>, kernel=<OpOverload(op='aten.var', overload='dim')>), <OpOverload(op='aten.var', overload='names_dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b622b60>, kernel=<OpOverload(op='aten.var', overload='names_dim')>), <OpOverload(op='aten.var', overload='correction_names')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b628b80>, kernel=<OpOverload(op='aten.var', overload='correction_names')>), <OpOverload(op='aten.svd', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61d620>, kernel=<OpOverload(op='aten.svd', overload='default')>), <OpOverload(op='aten.uniform', overload='default')>: <function uniform at 0x7fce34d73560>, <OpOverload(op='aten.uniform', overload='out')>: <function uniform at 0x7fce34d73560>, <OpOverload(op='aten.linear', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61eac0>, kernel=<OpOverload(op='aten.linear', overload='default')>), <OpOverload(op='aten.sigmoid_backward', overload='default')>: <function sigmoid_backward at 0x7fce34ee5da0>, <OpOverload(op='aten.sigmoid_backward', overload='grad_input')>: <function sigmoid_backward at 0x7fce34ee5da0>, <OpOverload(op='aten.softplus_backward', overload='default')>: <function softplus_backward at 0x7fce34ee6160>, <OpOverload(op='aten.softplus_backward', overload='grad_input')>: <function softplus_backward at 0x7fce34ee6160>, <OpOverload(op='aten.elu_backward', overload='default')>: <function elu_backward at 0x7fce34ee5d00>, <OpOverload(op='aten.elu_backward', overload='grad_input')>: <function elu_backward at 0x7fce34ee5d00>, <OpOverload(op='aten.hardsigmoid_backward', overload='default')>: <function hardsigmoid_backward at 0x7fce34ee6de0>, <OpOverload(op='aten.hardsigmoid_backward', overload='grad_input')>: <function hardsigmoid_backward at 0x7fce34ee6de0>, <OpOverload(op='aten.hardswish_backward', overload='default')>: <function hardswish_backward at 0x7fce34ee7600>, <OpOverload(op='aten.hardswish_backward', overload='out')>: <function hardswish_backward at 0x7fce34ee7600>, <OpOverload(op='aten.threshold_backward', overload='default')>: <function threshold_backward at 0x7fce34ee76a0>, <OpOverload(op='aten.threshold_backward', overload='grad_input')>: <function threshold_backward at 0x7fce34ee76a0>, <OpOverload(op='aten.leaky_relu_backward', overload='default')>: <function leaky_relu_backward at 0x7fce34ee79c0>, <OpOverload(op='aten.leaky_relu_backward', overload='grad_input')>: <function leaky_relu_backward at 0x7fce34ee79c0>, <OpOverload(op='aten.gelu_backward', overload='default')>: <function gelu_backward at 0x7fce34ee7d80>, <OpOverload(op='aten.gelu_backward', overload='grad_input')>: <function gelu_backward at 0x7fce34ee7d80>, <OpOverload(op='aten.mish_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61f100>, kernel=<OpOverload(op='aten.mish_backward', overload='default')>), <OpOverload(op='aten.rrelu_with_noise_backward', overload='out')>: <function rrelu_with_noise_backward at 0x7fce34d20f40>, <OpOverload(op='aten.rrelu_with_noise_backward', overload='default')>: <function rrelu_with_noise_backward at 0x7fce34d20f40>, <OpOverload(op='aten.tanh_backward', overload='grad_input')>: <function tanh_backward at 0x7fce34ee5940>, <OpOverload(op='aten.sym_numel', overload='default')>: <function sym_numel at 0x7fce34de4540>, <OpOverload(op='aten.item', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61d080>, kernel=<OpOverload(op='aten.item', overload='default')>), <OpOverload(op='aten.nonzero_numpy', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b61d760>, kernel=<OpOverload(op='aten.nonzero_numpy', overload='default')>), <OpOverload(op='aten.index_put_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5760>, <OpOverload(op='aten.lift_fresh', overload='default')>: <function nop_decomposition at 0x7fce34d71120>, <OpOverload(op='quantized.conv3d_transpose', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6420c0>, kernel=<OpOverload(op='quantized.conv3d_transpose', overload='default')>), <OpOverload(op='quantized.conv3d_padding', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b641760>, kernel=<OpOverload(op='quantized.conv3d_padding', overload='default')>), <OpOverload(op='quantized.conv2d_dilation', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6419e0>, kernel=<OpOverload(op='quantized.conv2d_dilation', overload='default')>), <OpOverload(op='quantized.conv_transpose1d_unpack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b641a80>, kernel=<OpOverload(op='quantized.conv_transpose1d_unpack', overload='default')>), <OpOverload(op='quantized.conv_transpose3d_groups', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b642480>, kernel=<OpOverload(op='quantized.conv_transpose3d_groups', overload='default')>), <OpOverload(op='quantized.conv2d_unpack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b643380>, kernel=<OpOverload(op='quantized.conv2d_unpack', overload='default')>), <OpOverload(op='quantized.conv_transpose3d_padding', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b642de0>, kernel=<OpOverload(op='quantized.conv_transpose3d_padding', overload='default')>), <OpOverload(op='quantized.conv2d_output_padding', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6428e0>, kernel=<OpOverload(op='quantized.conv2d_output_padding', overload='default')>), <OpOverload(op='quantized.conv3d_dilation', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b642520>, kernel=<OpOverload(op='quantized.conv3d_dilation', overload='default')>), <OpOverload(op='quantized.conv2d_padding', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b641800>, kernel=<OpOverload(op='quantized.conv2d_padding', overload='default')>), <OpOverload(op='quantized.conv1d_unpack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6427a0>, kernel=<OpOverload(op='quantized.conv1d_unpack', overload='default')>), <OpOverload(op='quantized.conv_transpose3d_output_padding', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b641300>, kernel=<OpOverload(op='quantized.conv_transpose3d_output_padding', overload='default')>), <OpOverload(op='quantized.conv3d_groups', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b641580>, kernel=<OpOverload(op='quantized.conv3d_groups', overload='default')>), <OpOverload(op='quantized.conv_transpose3d_stride', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b641440>, kernel=<OpOverload(op='quantized.conv_transpose3d_stride', overload='default')>), <OpOverload(op='quantized.conv_transpose3d_unpack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b642200>, kernel=<OpOverload(op='quantized.conv_transpose3d_unpack', overload='default')>), <OpOverload(op='quantized.conv_transpose3d_transpose', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6416c0>, kernel=<OpOverload(op='quantized.conv_transpose3d_transpose', overload='default')>), <OpOverload(op='quantized.conv2d_groups', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b641d00>, kernel=<OpOverload(op='quantized.conv2d_groups', overload='default')>), <OpOverload(op='quantized.make_quantized_cell_params_fp16', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b643600>, kernel=<OpOverload(op='quantized.make_quantized_cell_params_fp16', overload='default')>), <OpOverload(op='quantized.linear_unpack_fp16', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b642840>, kernel=<OpOverload(op='quantized.linear_unpack_fp16', overload='default')>), <OpOverload(op='quantized.conv3d_stride', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6425c0>, kernel=<OpOverload(op='quantized.conv3d_stride', overload='default')>), <OpOverload(op='quantized.conv_transpose3d_dilation', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b641da0>, kernel=<OpOverload(op='quantized.conv_transpose3d_dilation', overload='default')>), <OpOverload(op='quantized.conv_transpose2d_transpose', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b641ee0>, kernel=<OpOverload(op='quantized.conv_transpose2d_transpose', overload='default')>), <OpOverload(op='quantized.conv2d_stride', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6418a0>, kernel=<OpOverload(op='quantized.conv2d_stride', overload='default')>), <OpOverload(op='quantized.conv2d_transpose', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b643240>, kernel=<OpOverload(op='quantized.conv2d_transpose', overload='default')>), <OpOverload(op='quantized.linear_unpack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b642c00>, kernel=<OpOverload(op='quantized.linear_unpack', overload='default')>), <OpOverload(op='quantized.embedding_bag_unpack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b642b60>, kernel=<OpOverload(op='quantized.embedding_bag_unpack', overload='default')>), <OpOverload(op='quantized.conv3d_unpack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b642700>, kernel=<OpOverload(op='quantized.conv3d_unpack', overload='default')>), <OpOverload(op='quantized.conv_unpack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b642340>, kernel=<OpOverload(op='quantized.conv_unpack', overload='default')>), <OpOverload(op='quantized.conv_transpose2d_dilation', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b641e40>, kernel=<OpOverload(op='quantized.conv_transpose2d_dilation', overload='default')>), <OpOverload(op='quantized.conv_transpose2d_output_padding', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b642020>, kernel=<OpOverload(op='quantized.conv_transpose2d_output_padding', overload='default')>), <OpOverload(op='quantized.conv_transpose2d_padding', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b642660>, kernel=<OpOverload(op='quantized.conv_transpose2d_padding', overload='default')>), <OpOverload(op='sparse.qlinear_unpack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6423e0>, kernel=<OpOverload(op='sparse.qlinear_unpack', overload='default')>), <OpOverload(op='quantized.conv_transpose2d_groups', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b6422a0>, kernel=<OpOverload(op='quantized.conv_transpose2d_groups', overload='default')>), <OpOverload(op='quantized.conv3d_output_padding', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b641c60>, kernel=<OpOverload(op='quantized.conv3d_output_padding', overload='default')>), <OpOverload(op='quantized.conv_transpose2d_unpack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b643420>, kernel=<OpOverload(op='quantized.conv_transpose2d_unpack', overload='default')>), <OpOverload(op='quantized.conv_transpose2d_stride', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b643100>, kernel=<OpOverload(op='quantized.conv_transpose2d_stride', overload='default')>), <OpOverload(op='profiler._record_function_exit', overload='_RecordFunction')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b643560>, kernel=<OpOverload(op='profiler._record_function_exit', overload='_RecordFunction')>)}
- experimental_experiment.torch_dynamo.get_decomposition_table_onnxscript()[source]¶
Returns the decomposition table used by
torch.onnx.export().The value is:
<<<
import pprint from experimental_experiment.torch_dynamo import get_decomposition_table_onnxscript pprint.pprint(get_decomposition_table_onnxscript())
>>>
{<OpOverload(op='aten.histogramdd', overload='TensorList_bins')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b0e00>, kernel=<OpOverload(op='aten.histogramdd', overload='TensorList_bins')>), <OpOverload(op='aten.trapz', overload='dx')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a59e0>, kernel=<OpOverload(op='aten.trapz', overload='dx')>), <OpOverload(op='aten.special_exp2', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a5bc0>, kernel=<OpOverload(op='aten.special_exp2', overload='default')>), <OpOverload(op='aten.fbgemm_linear_int8_weight', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a6200>, kernel=<OpOverload(op='aten.fbgemm_linear_int8_weight', overload='default')>), <OpOverload(op='aten.lu_solve', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a4720>, kernel=<OpOverload(op='aten.lu_solve', overload='default')>), <OpOverload(op='aten._test_ambiguous_defaults', overload='b')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b8f40>, kernel=<OpOverload(op='aten._test_ambiguous_defaults', overload='b')>), <OpOverload(op='aten._convolution_mode', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a4fe0>, kernel=<OpOverload(op='aten._convolution_mode', overload='default')>), <OpOverload(op='aten._thnn_fused_lstm_cell_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a5580>, kernel=<OpOverload(op='aten._thnn_fused_lstm_cell_backward', overload='default')>), <OpOverload(op='aten.affine_grid_generator_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59ea20>, kernel=<OpOverload(op='aten.affine_grid_generator_backward', overload='default')>), <OpOverload(op='aten._sparse_csc_tensor_unsafe', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59eca0>, kernel=<OpOverload(op='aten._sparse_csc_tensor_unsafe', overload='default')>), <OpOverload(op='aten.sum_to_size', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59ee80>, kernel=<OpOverload(op='aten.sum_to_size', overload='default')>), <OpOverload(op='aten.infinitely_differentiable_gelu_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59ef20>, kernel=<OpOverload(op='aten.infinitely_differentiable_gelu_backward', overload='default')>), <OpOverload(op='aten.linalg_matrix_norm', overload='str_ord')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59cea0>, kernel=<OpOverload(op='aten.linalg_matrix_norm', overload='str_ord')>), <OpOverload(op='aten.to_mkldnn_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59fa60>, kernel=<OpOverload(op='aten.to_mkldnn_backward', overload='default')>), <OpOverload(op='aten.orgqr', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59fb00>, kernel=<OpOverload(op='aten.orgqr', overload='default')>), <OpOverload(op='aten._cufft_get_plan_cache_max_size', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59ff60>, kernel=<OpOverload(op='aten._cufft_get_plan_cache_max_size', overload='default')>), <OpOverload(op='aten.quantile', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59d6c0>, kernel=<OpOverload(op='aten.quantile', overload='default')>), <OpOverload(op='c10d_functional.reduce_scatter_tensor_coalesced', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b9ee0>, kernel=<OpOverload(op='c10d_functional.reduce_scatter_tensor_coalesced', overload='default')>), <OpOverload(op='prepacked.unpack_prepacked_sizes_conv2d', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5ba0c0>, kernel=<OpOverload(op='prepacked.unpack_prepacked_sizes_conv2d', overload='default')>), <OpOverload(op='aten.special_xlogy', overload='self_scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59de40>, kernel=<OpOverload(op='aten.special_xlogy', overload='self_scalar')>), <OpOverload(op='aten._shape_as_tensor', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59e980>, kernel=<OpOverload(op='aten._shape_as_tensor', overload='default')>), <OpOverload(op='aten.gradient', overload='scalarrayarray')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b8680>, kernel=<OpOverload(op='aten.gradient', overload='scalarrayarray')>), <OpOverload(op='aten.norm_except_dim', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b9080>, kernel=<OpOverload(op='aten.norm_except_dim', overload='default')>), <OpOverload(op='aten.gru_cell', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b9620>, kernel=<OpOverload(op='aten.gru_cell', overload='default')>), <OpOverload(op='aten.quantized_lstm_cell', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b2980>, kernel=<OpOverload(op='aten.quantized_lstm_cell', overload='default')>), <OpOverload(op='aten._sparse_sum', overload='dtype')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b2ca0>, kernel=<OpOverload(op='aten._sparse_sum', overload='dtype')>), <OpOverload(op='aten.special_logit', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b2d40>, kernel=<OpOverload(op='aten.special_logit', overload='default')>), <OpOverload(op='aten.concatenate', overload='names')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58b1a0>, kernel=<OpOverload(op='aten.concatenate', overload='names')>), <OpOverload(op='aten.conv3d', overload='padding')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59c360>, kernel=<OpOverload(op='aten.conv3d', overload='padding')>), <OpOverload(op='aten.log_softmax', overload='Dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b597b00>, kernel=<OpOverload(op='aten.log_softmax', overload='Dimname')>), <OpOverload(op='aten.concat', overload='names')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b596340>, kernel=<OpOverload(op='aten.concat', overload='names')>), <OpOverload(op='aten.conv1d', overload='padding')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a51c0>, kernel=<OpOverload(op='aten.conv1d', overload='padding')>), <OpOverload(op='aten.softmax', overload='Dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59f1a0>, kernel=<OpOverload(op='aten.softmax', overload='Dimname')>), <OpOverload(op='aten.isreal', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59dc60>, kernel=<OpOverload(op='aten.isreal', overload='default')>), <OpOverload(op='aten._dim_arange', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59e340>, kernel=<OpOverload(op='aten._dim_arange', overload='default')>), <OpOverload(op='aten.linalg_tensorsolve', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59e520>, kernel=<OpOverload(op='aten.linalg_tensorsolve', overload='default')>), <OpOverload(op='_test.get_first', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5bb740>, kernel=<OpOverload(op='_test.get_first', overload='default')>), <OpOverload(op='c10d_functional.reduce_scatter_tensor', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5bb880>, kernel=<OpOverload(op='c10d_functional.reduce_scatter_tensor', overload='default')>), <OpOverload(op='aten._remove_batch_dim', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b85e0>, kernel=<OpOverload(op='aten._remove_batch_dim', overload='default')>), <OpOverload(op='aten.special_xlogy', overload='other_scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b87c0>, kernel=<OpOverload(op='aten.special_xlogy', overload='other_scalar')>), <OpOverload(op='aten.linalg_vecdot', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b8e00>, kernel=<OpOverload(op='aten.linalg_vecdot', overload='default')>), <OpOverload(op='aten.inner', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b9300>, kernel=<OpOverload(op='aten.inner', overload='default')>), <OpOverload(op='aten.nll_loss2d', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b3740>, kernel=<OpOverload(op='aten.nll_loss2d', overload='default')>), <OpOverload(op='prepacked.unpack_prepacked_sizes_linear', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5bb600>, kernel=<OpOverload(op='prepacked.unpack_prepacked_sizes_linear', overload='default')>), <OpOverload(op='aten.fbgemm_linear_fp16_weight_fp32_activation', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b3d80>, kernel=<OpOverload(op='aten.fbgemm_linear_fp16_weight_fp32_activation', overload='default')>), <OpOverload(op='aten._convolution_double_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b11c0>, kernel=<OpOverload(op='aten._convolution_double_backward', overload='default')>), <OpOverload(op='aten.get_gradients', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b18a0>, kernel=<OpOverload(op='aten.get_gradients', overload='default')>), <OpOverload(op='aten.special_psi', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b3ba0>, kernel=<OpOverload(op='aten.special_psi', overload='default')>), <OpOverload(op='c10d_functional.all_reduce', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5bb240>, kernel=<OpOverload(op='c10d_functional.all_reduce', overload='default')>), <OpOverload(op='aten._propagate_xla_data', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a7380>, kernel=<OpOverload(op='aten._propagate_xla_data', overload='default')>), <OpOverload(op='aten.outer', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a76a0>, kernel=<OpOverload(op='aten.outer', overload='default')>), <OpOverload(op='aten.choose_qparams_optimized', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a7d80>, kernel=<OpOverload(op='aten.choose_qparams_optimized', overload='default')>), <OpOverload(op='aten.conv_transpose3d', overload='input')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b0040>, kernel=<OpOverload(op='aten.conv_transpose3d', overload='input')>), <OpOverload(op='aten.fbgemm_linear_int8_weight_fp32_activation', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b0860>, kernel=<OpOverload(op='aten.fbgemm_linear_int8_weight_fp32_activation', overload='default')>), <OpOverload(op='aten._wrapped_linear_prepack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a5940>, kernel=<OpOverload(op='aten._wrapped_linear_prepack', overload='default')>), <OpOverload(op='aten._sparse_mm', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a5c60>, kernel=<OpOverload(op='aten._sparse_mm', overload='default')>), <OpOverload(op='aten.linalg_slogdet', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a60c0>, kernel=<OpOverload(op='aten.linalg_slogdet', overload='default')>), <OpOverload(op='aten.matrix_exp_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a6660>, kernel=<OpOverload(op='aten.matrix_exp_backward', overload='default')>), <OpOverload(op='aten._version', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a6f20>, kernel=<OpOverload(op='aten._version', overload='default')>), <OpOverload(op='aten.linalg_matrix_rank', overload='atol_rtol_tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a7060>, kernel=<OpOverload(op='aten.linalg_matrix_rank', overload='atol_rtol_tensor')>), <OpOverload(op='aten._convolution', overload='deprecated')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a4360>, kernel=<OpOverload(op='aten._convolution', overload='deprecated')>), <OpOverload(op='aten.is_signed', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a4ae0>, kernel=<OpOverload(op='aten.is_signed', overload='default')>), <OpOverload(op='aten.to_sparse', overload='sparse_dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b2fc0>, kernel=<OpOverload(op='aten.to_sparse', overload='sparse_dim')>), <OpOverload(op='aten.hstack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a5260>, kernel=<OpOverload(op='aten.hstack', overload='default')>), <OpOverload(op='aten.cumulative_trapezoid', overload='x')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a5620>, kernel=<OpOverload(op='aten.cumulative_trapezoid', overload='x')>), <OpOverload(op='aten.linalg_tensorinv', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59f240>, kernel=<OpOverload(op='aten.linalg_tensorinv', overload='default')>), <OpOverload(op='aten.vander', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59f880>, kernel=<OpOverload(op='aten.vander', overload='default')>), <OpOverload(op='aten.is_vulkan_available', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59fce0>, kernel=<OpOverload(op='aten.is_vulkan_available', overload='default')>), <OpOverload(op='aten.thnn_conv2d', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59d620>, kernel=<OpOverload(op='aten.thnn_conv2d', overload='default')>), <OpOverload(op='aten.sparse_bsc_tensor', overload='ccol_row_value')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59dd00>, kernel=<OpOverload(op='aten.sparse_bsc_tensor', overload='ccol_row_value')>), <OpOverload(op='aten._use_cudnn_rnn_flatten_weight', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b19e0>, kernel=<OpOverload(op='aten._use_cudnn_rnn_flatten_weight', overload='default')>), <OpOverload(op='aten.fake_quantize_per_tensor_affine', overload='tensor_qparams')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59e3e0>, kernel=<OpOverload(op='aten.fake_quantize_per_tensor_affine', overload='tensor_qparams')>), <OpOverload(op='aten.linalg_svdvals', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59e660>, kernel=<OpOverload(op='aten.linalg_svdvals', overload='default')>), <OpOverload(op='aten.linalg_solve_ex', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b1c60>, kernel=<OpOverload(op='aten.linalg_solve_ex', overload='default')>), <OpOverload(op='aten.is_distributed', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b8860>, kernel=<OpOverload(op='aten.is_distributed', overload='default')>), <OpOverload(op='aten.retains_grad', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b8d60>, kernel=<OpOverload(op='aten.retains_grad', overload='default')>), <OpOverload(op='aten.rms_norm', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b93a0>, kernel=<OpOverload(op='aten.rms_norm', overload='default')>), <OpOverload(op='aten.unflatten_dense_tensors', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b96c0>, kernel=<OpOverload(op='aten.unflatten_dense_tensors', overload='default')>), <OpOverload(op='aten.sparse_csr_tensor', overload='crow_col_value_size')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b2840>, kernel=<OpOverload(op='aten.sparse_csr_tensor', overload='crow_col_value_size')>), <OpOverload(op='aten._test_serialization_subcmul', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b2c00>, kernel=<OpOverload(op='aten._test_serialization_subcmul', overload='default')>), <OpOverload(op='aten.sparse_bsr_tensor', overload='crow_col_value_size')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b2f20>, kernel=<OpOverload(op='aten.sparse_bsr_tensor', overload='crow_col_value_size')>), <OpOverload(op='aten._cast_Long', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b3100>, kernel=<OpOverload(op='aten._cast_Long', overload='default')>), <OpOverload(op='aten.conv_tbc_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b3880>, kernel=<OpOverload(op='aten.conv_tbc_backward', overload='default')>), <OpOverload(op='aten.linalg_matrix_rank', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b27a0>, kernel=<OpOverload(op='aten.linalg_matrix_rank', overload='default')>), <OpOverload(op='aten._sparse_coo_tensor_unsafe', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b39c0>, kernel=<OpOverload(op='aten._sparse_coo_tensor_unsafe', overload='default')>), <OpOverload(op='aten.bilinear', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b1f80>, kernel=<OpOverload(op='aten.bilinear', overload='default')>), <OpOverload(op='aten._validate_sparse_compressed_tensor_args', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b2160>, kernel=<OpOverload(op='aten._validate_sparse_compressed_tensor_args', overload='default')>), <OpOverload(op='aten._cast_Int', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a7560>, kernel=<OpOverload(op='aten._cast_Int', overload='default')>), <OpOverload(op='aten.fake_quantize_per_tensor_affine_cachemask_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a7e20>, kernel=<OpOverload(op='aten.fake_quantize_per_tensor_affine_cachemask_backward', overload='default')>), <OpOverload(op='aten.adaptive_avg_pool2d', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b00e0>, kernel=<OpOverload(op='aten.adaptive_avg_pool2d', overload='default')>), <OpOverload(op='aten.fake_quantize_per_channel_affine', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b07c0>, kernel=<OpOverload(op='aten.fake_quantize_per_channel_affine', overload='default')>), <OpOverload(op='aten.special_polygamma', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a5d00>, kernel=<OpOverload(op='aten.special_polygamma', overload='default')>), <OpOverload(op='aten.gather_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a6fc0>, kernel=<OpOverload(op='aten.gather_backward', overload='default')>), <OpOverload(op='aten._sparse_mm', overload='reduce')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b595300>, kernel=<OpOverload(op='aten._sparse_mm', overload='reduce')>), <OpOverload(op='aten.native_channel_shuffle', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a7100>, kernel=<OpOverload(op='aten.native_channel_shuffle', overload='default')>), <OpOverload(op='aten.ger', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a4180>, kernel=<OpOverload(op='aten.ger', overload='default')>), <OpOverload(op='aten._lu_with_info', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a4860>, kernel=<OpOverload(op='aten._lu_with_info', overload='default')>), <OpOverload(op='aten.data', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a4900>, kernel=<OpOverload(op='aten.data', overload='default')>), <OpOverload(op='aten._is_zerotensor', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a4e00>, kernel=<OpOverload(op='aten._is_zerotensor', overload='default')>), <OpOverload(op='aten.special_log1p', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a53a0>, kernel=<OpOverload(op='aten.special_log1p', overload='default')>), <OpOverload(op='aten.cudnn_is_acceptable', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a56c0>, kernel=<OpOverload(op='aten.cudnn_is_acceptable', overload='default')>), <OpOverload(op='aten.linalg_norm', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59ec00>, kernel=<OpOverload(op='aten.linalg_norm', overload='default')>), <OpOverload(op='aten.gradient', overload='scalarrayint')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59ed40>, kernel=<OpOverload(op='aten.gradient', overload='scalarrayint')>), <OpOverload(op='aten._sparse_softmax', overload='int')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b2b60>, kernel=<OpOverload(op='aten._sparse_softmax', overload='int')>), <OpOverload(op='aten.result_type', overload='Scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59f600>, kernel=<OpOverload(op='aten.result_type', overload='Scalar')>), <OpOverload(op='aten._cast_Byte', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59fe20>, kernel=<OpOverload(op='aten._cast_Byte', overload='default')>), <OpOverload(op='aten.to_sparse', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59d3a0>, kernel=<OpOverload(op='aten.to_sparse', overload='default')>), <OpOverload(op='aten._test_ambiguous_defaults', overload='a')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59dda0>, kernel=<OpOverload(op='aten._test_ambiguous_defaults', overload='a')>), <OpOverload(op='aten.special_gammainc', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59e020>, kernel=<OpOverload(op='aten.special_gammainc', overload='default')>), <OpOverload(op='aten.triplet_margin_loss', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59e8e0>, kernel=<OpOverload(op='aten.triplet_margin_loss', overload='default')>), <OpOverload(op='aten.to_sparse_bsc', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58ae80>, kernel=<OpOverload(op='aten.to_sparse_bsc', overload='default')>), <OpOverload(op='aten._backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b8900>, kernel=<OpOverload(op='aten._backward', overload='default')>), <OpOverload(op='aten._reshape_from_tensor', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b8fe0>, kernel=<OpOverload(op='aten._reshape_from_tensor', overload='default')>), <OpOverload(op='aten.sparse_bsc_tensor', overload='ccol_row_value_size')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a7880>, kernel=<OpOverload(op='aten.sparse_bsc_tensor', overload='ccol_row_value_size')>), <OpOverload(op='aten._pack_padded_sequence_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b2660>, kernel=<OpOverload(op='aten._pack_padded_sequence_backward', overload='default')>), <OpOverload(op='aten.is_leaf', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b34c0>, kernel=<OpOverload(op='aten.is_leaf', overload='default')>), <OpOverload(op='aten._has_compatible_shallow_copy_type', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b3ce0>, kernel=<OpOverload(op='aten._has_compatible_shallow_copy_type', overload='default')>), <OpOverload(op='aten.cumulative_trapezoid', overload='dx')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b0ea0>, kernel=<OpOverload(op='aten.cumulative_trapezoid', overload='dx')>), <OpOverload(op='quantized.conv2d_unpack_sizes', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5bb060>, kernel=<OpOverload(op='quantized.conv2d_unpack_sizes', overload='default')>), <OpOverload(op='aten._cast_Float', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b1620>, kernel=<OpOverload(op='aten._cast_Float', overload='default')>), <OpOverload(op='aten._cast_Half', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b1a80>, kernel=<OpOverload(op='aten._cast_Half', overload='default')>), <OpOverload(op='aten.ctc_loss', overload='Tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b1ee0>, kernel=<OpOverload(op='aten.ctc_loss', overload='Tensor')>), <OpOverload(op='aten._sparse_softmax', overload='Dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b2020>, kernel=<OpOverload(op='aten._sparse_softmax', overload='Dimname')>), <OpOverload(op='aten.trapezoid', overload='x')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a7600>, kernel=<OpOverload(op='aten.trapezoid', overload='x')>), <OpOverload(op='aten.linalg_solve', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a79c0>, kernel=<OpOverload(op='aten.linalg_solve', overload='default')>), <OpOverload(op='aten._sobol_engine_draw', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a7c40>, kernel=<OpOverload(op='aten._sobol_engine_draw', overload='default')>), <OpOverload(op='aten.gradient', overload='array')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b0a40>, kernel=<OpOverload(op='aten.gradient', overload='array')>), <OpOverload(op='aten.histogramdd', overload='int_bins')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b0cc0>, kernel=<OpOverload(op='aten.histogramdd', overload='int_bins')>), <OpOverload(op='aten.nanmean', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b594040>, kernel=<OpOverload(op='aten.nanmean', overload='default')>), <OpOverload(op='aten.slogdet', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b595440>, kernel=<OpOverload(op='aten.slogdet', overload='default')>), <OpOverload(op='aten.trapz', overload='x')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b595c60>, kernel=<OpOverload(op='aten.trapz', overload='x')>), <OpOverload(op='aten.tensordot', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a4220>, kernel=<OpOverload(op='aten.tensordot', overload='default')>), <OpOverload(op='aten.cummaxmin_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b594860>, kernel=<OpOverload(op='aten.cummaxmin_backward', overload='default')>), <OpOverload(op='_test.leaky_relu', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b9940>, kernel=<OpOverload(op='_test.leaky_relu', overload='default')>), <OpOverload(op='aten._sparse_sum', overload='dim_dtype')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b594cc0>, kernel=<OpOverload(op='aten._sparse_sum', overload='dim_dtype')>), <OpOverload(op='aten.cumprod_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58b560>, kernel=<OpOverload(op='aten.cumprod_backward', overload='default')>), <OpOverload(op='aten._batch_norm_impl_index_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58b880>, kernel=<OpOverload(op='aten._batch_norm_impl_index_backward', overload='default')>), <OpOverload(op='aten.nuclear_norm', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58bce0>, kernel=<OpOverload(op='aten.nuclear_norm', overload='default')>), <OpOverload(op='aten.vstack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58bec0>, kernel=<OpOverload(op='aten.vstack', overload='default')>), <OpOverload(op='aten.special_round', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b823c40>, kernel=<OpOverload(op='aten.special_round', overload='default')>), <OpOverload(op='aten.msort', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b822840>, kernel=<OpOverload(op='aten.msort', overload='default')>), <OpOverload(op='aten.argsort', overload='dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58ac00>, kernel=<OpOverload(op='aten.argsort', overload='dimname')>), <OpOverload(op='mkldnn._is_mkldnn_bf16_supported', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b9800>, kernel=<OpOverload(op='mkldnn._is_mkldnn_bf16_supported', overload='default')>), <OpOverload(op='aten._cast_Double', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58af20>, kernel=<OpOverload(op='aten._cast_Double', overload='default')>), <OpOverload(op='aten._pad_circular', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59cae0>, kernel=<OpOverload(op='aten._pad_circular', overload='default')>), <OpOverload(op='aten.index_select_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59ce00>, kernel=<OpOverload(op='aten.index_select_backward', overload='default')>), <OpOverload(op='_test.cat', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b9bc0>, kernel=<OpOverload(op='_test.cat', overload='default')>), <OpOverload(op='aten.linalg_matmul', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59d300>, kernel=<OpOverload(op='aten.linalg_matmul', overload='default')>), <OpOverload(op='aten.kron', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b597c40>, kernel=<OpOverload(op='aten.kron', overload='default')>), <OpOverload(op='aten.to_dense_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b597e20>, kernel=<OpOverload(op='aten.to_dense_backward', overload='default')>), <OpOverload(op='aten.linalg_pinv', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58b6a0>, kernel=<OpOverload(op='aten.linalg_pinv', overload='default')>), <OpOverload(op='aten.linalg_pinv', overload='atol_rtol_float')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59c220>, kernel=<OpOverload(op='aten.linalg_pinv', overload='atol_rtol_float')>), <OpOverload(op='aten.diagflat', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59c540>, kernel=<OpOverload(op='aten.diagflat', overload='default')>), <OpOverload(op='aten.value_selecting_reduction_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59c860>, kernel=<OpOverload(op='aten.value_selecting_reduction_backward', overload='default')>), <OpOverload(op='aten.to_dense', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b596d40>, kernel=<OpOverload(op='aten.to_dense', overload='default')>), <OpOverload(op='aten.cov', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b595800>, kernel=<OpOverload(op='aten.cov', overload='default')>), <OpOverload(op='aten.sparse_bsr_tensor', overload='crow_col_value')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5971a0>, kernel=<OpOverload(op='aten.sparse_bsr_tensor', overload='crow_col_value')>), <OpOverload(op='aten.linalg_cond', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b597560>, kernel=<OpOverload(op='aten.linalg_cond', overload='default')>), <OpOverload(op='aten.argwhere', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b597740>, kernel=<OpOverload(op='aten.argwhere', overload='default')>), <OpOverload(op='aten.is_inference', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b597920>, kernel=<OpOverload(op='aten.is_inference', overload='default')>), <OpOverload(op='aten.is_conj', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b595f80>, kernel=<OpOverload(op='aten.is_conj', overload='default')>), <OpOverload(op='aten.row_stack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5960c0>, kernel=<OpOverload(op='aten.row_stack', overload='default')>), <OpOverload(op='aten.sparse_csc_tensor', overload='ccol_row_value_size')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b596700>, kernel=<OpOverload(op='aten.sparse_csc_tensor', overload='ccol_row_value_size')>), <OpOverload(op='aten.rnn_relu_cell', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5968e0>, kernel=<OpOverload(op='aten.rnn_relu_cell', overload='default')>), <OpOverload(op='aten.adaptive_avg_pool1d', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b596c00>, kernel=<OpOverload(op='aten.adaptive_avg_pool1d', overload='default')>), <OpOverload(op='aten._to_cpu', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a6020>, kernel=<OpOverload(op='aten._to_cpu', overload='default')>), <OpOverload(op='aten.fliplr', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a6520>, kernel=<OpOverload(op='aten.fliplr', overload='default')>), <OpOverload(op='aten.one_hot', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a4040>, kernel=<OpOverload(op='aten.one_hot', overload='default')>), <OpOverload(op='aten.sparse_csc_tensor', overload='ccol_row_value')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a4540>, kernel=<OpOverload(op='aten.sparse_csc_tensor', overload='ccol_row_value')>), <OpOverload(op='aten.matrix_power', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a4f40>, kernel=<OpOverload(op='aten.matrix_power', overload='default')>), <OpOverload(op='aten.align_tensors', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a5300>, kernel=<OpOverload(op='aten.align_tensors', overload='default')>), <OpOverload(op='aten.cdist', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59eac0>, kernel=<OpOverload(op='aten.cdist', overload='default')>), <OpOverload(op='aten.special_gammaln', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59efc0>, kernel=<OpOverload(op='aten.special_gammaln', overload='default')>), <OpOverload(op='aten.chalf', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b8239c0>, kernel=<OpOverload(op='aten.chalf', overload='default')>), <OpOverload(op='aten.linalg_pinv', overload='rcond_tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b3240>, kernel=<OpOverload(op='aten.linalg_pinv', overload='rcond_tensor')>), <OpOverload(op='aten.to_sparse_csr', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59fec0>, kernel=<OpOverload(op='aten.to_sparse_csr', overload='default')>), <OpOverload(op='aten.linalg_vander', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59d8a0>, kernel=<OpOverload(op='aten.linalg_vander', overload='default')>), <OpOverload(op='aten.ctc_loss', overload='IntList')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59dbc0>, kernel=<OpOverload(op='aten.ctc_loss', overload='IntList')>), <OpOverload(op='aten._pad_packed_sequence', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b3a60>, kernel=<OpOverload(op='aten._pad_packed_sequence', overload='default')>), <OpOverload(op='aten.fbgemm_linear_fp16_weight', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b3f60>, kernel=<OpOverload(op='aten.fbgemm_linear_fp16_weight', overload='default')>), <OpOverload(op='aten._weight_norm_differentiable_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b82c0>, kernel=<OpOverload(op='aten._weight_norm_differentiable_backward', overload='default')>), <OpOverload(op='aten.lstm_cell', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b84a0>, kernel=<OpOverload(op='aten.lstm_cell', overload='default')>), <OpOverload(op='aten._grid_sampler_2d_cpu_fallback_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b89a0>, kernel=<OpOverload(op='aten._grid_sampler_2d_cpu_fallback_backward', overload='default')>), <OpOverload(op='aten.masked_select_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b8ae0>, kernel=<OpOverload(op='aten.masked_select_backward', overload='default')>), <OpOverload(op='aten._saturate_weight_to_fp16', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b2340>, kernel=<OpOverload(op='aten._saturate_weight_to_fp16', overload='default')>), <OpOverload(op='c10d_functional.broadcast', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b9a80>, kernel=<OpOverload(op='c10d_functional.broadcast', overload='default')>), <OpOverload(op='aten._sparse_bsr_tensor_unsafe', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b3380>, kernel=<OpOverload(op='aten._sparse_bsr_tensor_unsafe', overload='default')>), <OpOverload(op='aten.fbgemm_linear_quantize_weight', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b3920>, kernel=<OpOverload(op='aten.fbgemm_linear_quantize_weight', overload='default')>), <OpOverload(op='aten.pinverse', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b8cc0>, kernel=<OpOverload(op='aten.pinverse', overload='default')>), <OpOverload(op='aten.quantized_rnn_tanh_cell', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b1120>, kernel=<OpOverload(op='aten.quantized_rnn_tanh_cell', overload='default')>), <OpOverload(op='aten.fbgemm_pack_quantized_matrix', overload='KN')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b1580>, kernel=<OpOverload(op='aten.fbgemm_pack_quantized_matrix', overload='KN')>), <OpOverload(op='aten._add_batch_dim', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b1760>, kernel=<OpOverload(op='aten._add_batch_dim', overload='default')>), <OpOverload(op='aten.linalg_eigh', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b22a0>, kernel=<OpOverload(op='aten.linalg_eigh', overload='default')>), <OpOverload(op='aten.qr', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a7740>, kernel=<OpOverload(op='aten.qr', overload='default')>), <OpOverload(op='aten._scaled_dot_product_attention_math', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b8a40>, kernel=<OpOverload(op='aten._scaled_dot_product_attention_math', overload='default')>), <OpOverload(op='aten._validate_sparse_csc_tensor_args', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b0680>, kernel=<OpOverload(op='aten._validate_sparse_csc_tensor_args', overload='default')>), <OpOverload(op='profiler._record_function_exit', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b9760>, kernel=<OpOverload(op='profiler._record_function_exit', overload='default')>), <OpOverload(op='aten.linalg_eigvalsh', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b0f40>, kernel=<OpOverload(op='aten.linalg_eigvalsh', overload='default')>), <OpOverload(op='aten._sparse_compressed_tensor_unsafe', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a5a80>, kernel=<OpOverload(op='aten._sparse_compressed_tensor_unsafe', overload='default')>), <OpOverload(op='aten._sparse_bsc_tensor_unsafe', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a5ee0>, kernel=<OpOverload(op='aten._sparse_bsc_tensor_unsafe', overload='default')>), <OpOverload(op='aten.linalg_matrix_norm', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b09a0>, kernel=<OpOverload(op='aten.linalg_matrix_norm', overload='default')>), <OpOverload(op='aten._wrapped_quantized_linear_prepacked', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a65c0>, kernel=<OpOverload(op='aten._wrapped_quantized_linear_prepacked', overload='default')>), <OpOverload(op='aten.special_i0', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a6b60>, kernel=<OpOverload(op='aten.special_i0', overload='default')>), <OpOverload(op='aten._cufft_clear_plan_cache', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a6c00>, kernel=<OpOverload(op='aten._cufft_clear_plan_cache', overload='default')>), <OpOverload(op='aten.rnn_tanh_cell', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a6e80>, kernel=<OpOverload(op='aten.rnn_tanh_cell', overload='default')>), <OpOverload(op='aten.l1_loss', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a40e0>, kernel=<OpOverload(op='aten.l1_loss', overload='default')>), <OpOverload(op='aten.fbgemm_pack_quantized_matrix', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a49a0>, kernel=<OpOverload(op='aten.fbgemm_pack_quantized_matrix', overload='default')>), <OpOverload(op='aten._sparse_log_softmax', overload='Dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b2ac0>, kernel=<OpOverload(op='aten._sparse_log_softmax', overload='Dimname')>), <OpOverload(op='aten.flipud', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59f380>, kernel=<OpOverload(op='aten.flipud', overload='default')>), <OpOverload(op='aten.special_xlogy', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59f6a0>, kernel=<OpOverload(op='aten.special_xlogy', overload='default')>), <OpOverload(op='aten._nnpack_available', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59f920>, kernel=<OpOverload(op='aten._nnpack_available', overload='default')>), <OpOverload(op='aten._test_autograd_multiple_dispatch', overload='ntonly')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59d9e0>, kernel=<OpOverload(op='aten._test_autograd_multiple_dispatch', overload='ntonly')>), <OpOverload(op='mkldnn._is_mkldnn_fp16_supported', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5ba160>, kernel=<OpOverload(op='mkldnn._is_mkldnn_fp16_supported', overload='default')>), <OpOverload(op='aten._rowwise_prune', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59df80>, kernel=<OpOverload(op='aten._rowwise_prune', overload='default')>), <OpOverload(op='aten.pad', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59e200>, kernel=<OpOverload(op='aten.pad', overload='default')>), <OpOverload(op='aten.frobenius_norm', overload='dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b8040>, kernel=<OpOverload(op='aten.frobenius_norm', overload='dim')>), <OpOverload(op='aten.is_neg', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59fba0>, kernel=<OpOverload(op='aten.is_neg', overload='default')>), <OpOverload(op='aten.result_type', overload='Scalar_Tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b8720>, kernel=<OpOverload(op='aten.result_type', overload='Scalar_Tensor')>), <OpOverload(op='aten.gradient', overload='scalararray')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b0400>, kernel=<OpOverload(op='aten.gradient', overload='scalararray')>), <OpOverload(op='aten.diff', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b9260>, kernel=<OpOverload(op='aten.diff', overload='default')>), <OpOverload(op='aten.linalg_cholesky', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b9440>, kernel=<OpOverload(op='aten.linalg_cholesky', overload='default')>), <OpOverload(op='aten.special_expit', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b23e0>, kernel=<OpOverload(op='aten.special_expit', overload='default')>), <OpOverload(op='aten.argsort', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b37e0>, kernel=<OpOverload(op='aten.argsort', overload='default')>), <OpOverload(op='aten.result_type', overload='Tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b3c40>, kernel=<OpOverload(op='aten.result_type', overload='Tensor')>), <OpOverload(op='aten.nested_to_padded_tensor', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b1300>, kernel=<OpOverload(op='aten.nested_to_padded_tensor', overload='default')>), <OpOverload(op='aten.fbgemm_pack_gemm_matrix_fp16', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a67a0>, kernel=<OpOverload(op='aten.fbgemm_pack_gemm_matrix_fp16', overload='default')>), <OpOverload(op='aten.is_floating_point', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b1b20>, kernel=<OpOverload(op='aten.is_floating_point', overload='default')>), <OpOverload(op='aten.output_nr', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a7a60>, kernel=<OpOverload(op='aten.output_nr', overload='default')>), <OpOverload(op='aten.result_type', overload='Scalar_Scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a7ec0>, kernel=<OpOverload(op='aten.result_type', overload='Scalar_Scalar')>), <OpOverload(op='aten._thnn_differentiable_lstm_cell_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b04a0>, kernel=<OpOverload(op='aten._thnn_differentiable_lstm_cell_backward', overload='default')>), <OpOverload(op='aten.cosine_embedding_loss', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b0b80>, kernel=<OpOverload(op='aten.cosine_embedding_loss', overload='default')>), <OpOverload(op='mkldnn._is_mkldnn_acl_supported', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5bafc0>, kernel=<OpOverload(op='mkldnn._is_mkldnn_acl_supported', overload='default')>), <OpOverload(op='aten.sparse_coo_tensor', overload='indices')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a6ca0>, kernel=<OpOverload(op='aten.sparse_coo_tensor', overload='indices')>), <OpOverload(op='aten.to_sparse_csc', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a45e0>, kernel=<OpOverload(op='aten.to_sparse_csc', overload='default')>), <OpOverload(op='aten.linalg_lu_factor', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a4680>, kernel=<OpOverload(op='aten.linalg_lu_factor', overload='default')>), <OpOverload(op='aten._choose_qparams_per_tensor', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a5da0>, kernel=<OpOverload(op='aten._choose_qparams_per_tensor', overload='default')>), <OpOverload(op='aten.embedding_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a5440>, kernel=<OpOverload(op='aten.embedding_backward', overload='default')>), <OpOverload(op='aten.align_as', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59eb60>, kernel=<OpOverload(op='aten.align_as', overload='default')>), <OpOverload(op='aten._validate_sparse_bsc_tensor_args', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59f420>, kernel=<OpOverload(op='aten._validate_sparse_bsc_tensor_args', overload='default')>), <OpOverload(op='aten.sparse_csr_tensor', overload='crow_col_value')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59f4c0>, kernel=<OpOverload(op='aten.sparse_csr_tensor', overload='crow_col_value')>), <OpOverload(op='aten.nanquantile', overload='scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59f7e0>, kernel=<OpOverload(op='aten.nanquantile', overload='scalar')>), <OpOverload(op='c10d_functional.all_to_all_single', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5ba520>, kernel=<OpOverload(op='c10d_functional.all_to_all_single', overload='default')>), <OpOverload(op='aten._cast_Char', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59d800>, kernel=<OpOverload(op='aten._cast_Char', overload='default')>), <OpOverload(op='aten.dstack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b594ae0>, kernel=<OpOverload(op='aten.dstack', overload='default')>), <OpOverload(op='aten.linalg_multi_dot', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59e0c0>, kernel=<OpOverload(op='aten.linalg_multi_dot', overload='default')>), <OpOverload(op='aten._validate_sparse_bsr_tensor_args', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59e480>, kernel=<OpOverload(op='aten._validate_sparse_bsr_tensor_args', overload='default')>), <OpOverload(op='aten.special_erfinv', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a42c0>, kernel=<OpOverload(op='aten.special_erfinv', overload='default')>), <OpOverload(op='aten.adaptive_avg_pool3d', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b8360>, kernel=<OpOverload(op='aten.adaptive_avg_pool3d', overload='default')>), <OpOverload(op='c10d_functional.all_gather_into_tensor_coalesced', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5bba60>, kernel=<OpOverload(op='c10d_functional.all_gather_into_tensor_coalesced', overload='default')>), <OpOverload(op='aten.gradient', overload='scalarint')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b8c20>, kernel=<OpOverload(op='aten.gradient', overload='scalarint')>), <OpOverload(op='aten._pad_enum', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59dee0>, kernel=<OpOverload(op='aten._pad_enum', overload='default')>), <OpOverload(op='aten.special_logsumexp', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b9120>, kernel=<OpOverload(op='aten.special_logsumexp', overload='default')>), <OpOverload(op='aten.column_stack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b94e0>, kernel=<OpOverload(op='aten.column_stack', overload='default')>), <OpOverload(op='aten._debug_has_internal_overlap', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b2520>, kernel=<OpOverload(op='aten._debug_has_internal_overlap', overload='default')>), <OpOverload(op='aten.sparse_coo_tensor', overload='indices_size')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58afc0>, kernel=<OpOverload(op='aten.sparse_coo_tensor', overload='indices_size')>), <OpOverload(op='aten.linalg_inv', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b2700>, kernel=<OpOverload(op='aten.linalg_inv', overload='default')>), <OpOverload(op='aten._cast_Short', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b2de0>, kernel=<OpOverload(op='aten._cast_Short', overload='default')>), <OpOverload(op='c10d_functional.all_gather_into_tensor', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5bb420>, kernel=<OpOverload(op='c10d_functional.all_gather_into_tensor', overload='default')>), <OpOverload(op='aten.adaptive_max_pool1d', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b3560>, kernel=<OpOverload(op='aten.adaptive_max_pool1d', overload='default')>), <OpOverload(op='aten.flatten_dense_tensors', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b3b00>, kernel=<OpOverload(op='aten.flatten_dense_tensors', overload='default')>), <OpOverload(op='aten.linalg_ldl_factor', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b3e20>, kernel=<OpOverload(op='aten.linalg_ldl_factor', overload='default')>), <OpOverload(op='aten.chain_matmul', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b16c0>, kernel=<OpOverload(op='aten.chain_matmul', overload='default')>), <OpOverload(op='aten._thnn_differentiable_gru_cell_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b2200>, kernel=<OpOverload(op='aten._thnn_differentiable_gru_cell_backward', overload='default')>), <OpOverload(op='profiler._record_function_enter_new', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5bb2e0>, kernel=<OpOverload(op='profiler._record_function_enter_new', overload='default')>), <OpOverload(op='aten.linalg_matrix_rank', overload='atol_rtol_float')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b80e0>, kernel=<OpOverload(op='aten.linalg_matrix_rank', overload='atol_rtol_float')>), <OpOverload(op='aten._cufft_set_plan_cache_max_size', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a7f60>, kernel=<OpOverload(op='aten._cufft_set_plan_cache_max_size', overload='default')>), <OpOverload(op='aten.linalg_svd', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b0360>, kernel=<OpOverload(op='aten.linalg_svd', overload='default')>), <OpOverload(op='aten.argsort', overload='stable')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b05e0>, kernel=<OpOverload(op='aten.argsort', overload='stable')>), <OpOverload(op='aten.nuclear_norm', overload='dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b1080>, kernel=<OpOverload(op='aten.nuclear_norm', overload='dim')>), <OpOverload(op='inductor._alloc_from_pool', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5baf20>, kernel=<OpOverload(op='inductor._alloc_from_pool', overload='default')>), <OpOverload(op='aten.gradient', overload='tensorarrayint')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a58a0>, kernel=<OpOverload(op='aten.gradient', overload='tensorarrayint')>), <OpOverload(op='aten.can_cast', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a6840>, kernel=<OpOverload(op='aten.can_cast', overload='default')>), <OpOverload(op='aten._test_string_default', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a6d40>, kernel=<OpOverload(op='aten._test_string_default', overload='default')>), <OpOverload(op='aten.linalg_matrix_power', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a6de0>, kernel=<OpOverload(op='aten.linalg_matrix_power', overload='default')>), <OpOverload(op='aten._embedding_bag_sparse_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a7240>, kernel=<OpOverload(op='aten._embedding_bag_sparse_backward', overload='default')>), <OpOverload(op='c10d_functional.wait_tensor', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5ba700>, kernel=<OpOverload(op='c10d_functional.wait_tensor', overload='default')>), <OpOverload(op='aten.quantile', overload='scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a44a0>, kernel=<OpOverload(op='aten.quantile', overload='scalar')>), <OpOverload(op='aten._validate_sparse_coo_tensor_args', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a77e0>, kernel=<OpOverload(op='aten._validate_sparse_coo_tensor_args', overload='default')>), <OpOverload(op='aten.special_gammaincc', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a4a40>, kernel=<OpOverload(op='aten.special_gammaincc', overload='default')>), <OpOverload(op='aten._validate_sparse_csr_tensor_args', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a4c20>, kernel=<OpOverload(op='aten._validate_sparse_csr_tensor_args', overload='default')>), <OpOverload(op='aten.quantized_gru_cell', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a4ea0>, kernel=<OpOverload(op='aten.quantized_gru_cell', overload='default')>), <OpOverload(op='aten.cosine_similarity', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a54e0>, kernel=<OpOverload(op='aten.cosine_similarity', overload='default')>), <OpOverload(op='aten._sparse_log_softmax', overload='int')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59f060>, kernel=<OpOverload(op='aten._sparse_log_softmax', overload='int')>), <OpOverload(op='aten.nll_loss_nd', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59f740>, kernel=<OpOverload(op='aten.nll_loss_nd', overload='default')>), <OpOverload(op='aten.smm', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59fd80>, kernel=<OpOverload(op='aten.smm', overload='default')>), <OpOverload(op='aten.trace_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59d760>, kernel=<OpOverload(op='aten.trace_backward', overload='default')>), <OpOverload(op='aten.slow_conv3d', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a5080>, kernel=<OpOverload(op='aten.slow_conv3d', overload='default')>), <OpOverload(op='aten.combinations', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59fc40>, kernel=<OpOverload(op='aten.combinations', overload='default')>), <OpOverload(op='aten._sparse_csr_tensor_unsafe', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59e160>, kernel=<OpOverload(op='aten._sparse_csr_tensor_unsafe', overload='default')>), <OpOverload(op='aten.inverse', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59e5c0>, kernel=<OpOverload(op='aten.inverse', overload='default')>), <OpOverload(op='aten.special_multigammaln', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59e700>, kernel=<OpOverload(op='aten.special_multigammaln', overload='default')>), <OpOverload(op='aten._sparse_sum', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b8220>, kernel=<OpOverload(op='aten._sparse_sum', overload='default')>), <OpOverload(op='aten.fake_quantize_per_tensor_affine', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b8ea0>, kernel=<OpOverload(op='aten.fake_quantize_per_tensor_affine', overload='default')>), <OpOverload(op='aten.multilabel_margin_loss', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b91c0>, kernel=<OpOverload(op='aten.multilabel_margin_loss', overload='default')>), <OpOverload(op='aten.fake_quantize_per_channel_affine_cachemask_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b0220>, kernel=<OpOverload(op='aten.fake_quantize_per_channel_affine_cachemask_backward', overload='default')>), <OpOverload(op='aten.embedding_sparse_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b28e0>, kernel=<OpOverload(op='aten.embedding_sparse_backward', overload='default')>), <OpOverload(op='aten.special_digamma', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b2a20>, kernel=<OpOverload(op='aten.special_digamma', overload='default')>), <OpOverload(op='aten.promote_types', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b2e80>, kernel=<OpOverload(op='aten.promote_types', overload='default')>), <OpOverload(op='aten.quantized_rnn_relu_cell', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b3060>, kernel=<OpOverload(op='aten.quantized_rnn_relu_cell', overload='default')>), <OpOverload(op='profiler._record_function_enter', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5bb4c0>, kernel=<OpOverload(op='profiler._record_function_enter', overload='default')>), <OpOverload(op='aten.histogramdd', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b32e0>, kernel=<OpOverload(op='aten.histogramdd', overload='default')>), <OpOverload(op='c10d_functional.all_reduce_coalesced', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5bb560>, kernel=<OpOverload(op='c10d_functional.all_reduce_coalesced', overload='default')>), <OpOverload(op='aten.kl_div', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b3ec0>, kernel=<OpOverload(op='aten.kl_div', overload='default')>), <OpOverload(op='aten._weight_norm', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b0fe0>, kernel=<OpOverload(op='aten._weight_norm', overload='default')>), <OpOverload(op='aten._gather_sparse_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b1440>, kernel=<OpOverload(op='aten._gather_sparse_backward', overload='default')>), <OpOverload(op='aten.conv_transpose1d', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b14e0>, kernel=<OpOverload(op='aten.conv_transpose1d', overload='default')>), <OpOverload(op='aten.gradient', overload='tensorarray')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b1940>, kernel=<OpOverload(op='aten.gradient', overload='tensorarray')>), <OpOverload(op='aten.sspaddmm', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b1bc0>, kernel=<OpOverload(op='aten.sspaddmm', overload='default')>), <OpOverload(op='aten.take_along_dim', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b1e40>, kernel=<OpOverload(op='aten.take_along_dim', overload='default')>), <OpOverload(op='aten.linalg_matrix_rank', overload='tol_tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b1da0>, kernel=<OpOverload(op='aten.linalg_matrix_rank', overload='tol_tensor')>), <OpOverload(op='aten.corrcoef', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a7420>, kernel=<OpOverload(op='aten.corrcoef', overload='default')>), <OpOverload(op='aten.nanquantile', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a7920>, kernel=<OpOverload(op='aten.nanquantile', overload='default')>), <OpOverload(op='aten.poisson_nll_loss', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a7b00>, kernel=<OpOverload(op='aten.poisson_nll_loss', overload='default')>), <OpOverload(op='aten.trapezoid', overload='dx')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b0180>, kernel=<OpOverload(op='aten.trapezoid', overload='dx')>), <OpOverload(op='aten.matrix_exp', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b0720>, kernel=<OpOverload(op='aten.matrix_exp', overload='default')>), <OpOverload(op='aten._cufft_get_plan_cache_size', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a7ba0>, kernel=<OpOverload(op='aten._cufft_get_plan_cache_size', overload='default')>), <OpOverload(op='aten.to_sparse_bsr', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b0c20>, kernel=<OpOverload(op='aten.to_sparse_bsr', overload='default')>), <OpOverload(op='aten.linalg_norm', overload='ord_str')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b9580>, kernel=<OpOverload(op='aten.linalg_norm', overload='ord_str')>), <OpOverload(op='aten.linalg_cond', overload='p_str')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59e840>, kernel=<OpOverload(op='aten.linalg_cond', overload='p_str')>), <OpOverload(op='aten._test_check_tensor', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b1260>, kernel=<OpOverload(op='aten._test_check_tensor', overload='default')>), <OpOverload(op='aten.__or__', overload='Tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a68e0>, kernel=<OpOverload(op='aten.__or__', overload='Tensor')>), <OpOverload(op='aten.__or__', overload='Scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a63e0>, kernel=<OpOverload(op='aten.__or__', overload='Scalar')>), <OpOverload(op='aten.conv_transpose2d', overload='input')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a6480>, kernel=<OpOverload(op='aten.conv_transpose2d', overload='input')>), <OpOverload(op='aten.__and__', overload='Tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a72e0>, kernel=<OpOverload(op='aten.__and__', overload='Tensor')>), <OpOverload(op='aten.__xor__', overload='Scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59d4e0>, kernel=<OpOverload(op='aten.__xor__', overload='Scalar')>), <OpOverload(op='aten.__xor__', overload='Tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59da80>, kernel=<OpOverload(op='aten.__xor__', overload='Tensor')>), <OpOverload(op='aten.arcsin', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b594d60>, kernel=<OpOverload(op='aten.arcsin', overload='default')>), <OpOverload(op='aten.absolute', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b595b20>, kernel=<OpOverload(op='aten.absolute', overload='default')>), <OpOverload(op='aten.arcsinh', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58b2e0>, kernel=<OpOverload(op='aten.arcsinh', overload='default')>), <OpOverload(op='aten.arccosh', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58ba60>, kernel=<OpOverload(op='aten.arccosh', overload='default')>), <OpOverload(op='aten.arccos', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58bba0>, kernel=<OpOverload(op='aten.arccos', overload='default')>), <OpOverload(op='aten.arctanh', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b31a0>, kernel=<OpOverload(op='aten.arctanh', overload='default')>), <OpOverload(op='aten.arctan', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5947c0>, kernel=<OpOverload(op='aten.arctan', overload='default')>), <OpOverload(op='aten.arctan2', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b2480>, kernel=<OpOverload(op='aten.arctan2', overload='default')>), <OpOverload(op='aten.clip', overload='Tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b1d00>, kernel=<OpOverload(op='aten.clip', overload='Tensor')>), <OpOverload(op='aten.conv2d', overload='padding')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a4cc0>, kernel=<OpOverload(op='aten.conv2d', overload='padding')>), <OpOverload(op='aten.cummax', overload='dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b0d60>, kernel=<OpOverload(op='aten.cummax', overload='dimname')>), <OpOverload(op='aten.cummin', overload='dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b0540>, kernel=<OpOverload(op='aten.cummin', overload='dimname')>), <OpOverload(op='aten.divide', overload='Tensor_mode')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5954e0>, kernel=<OpOverload(op='aten.divide', overload='Tensor_mode')>), <OpOverload(op='aten.divide', overload='Scalar_mode')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b595760>, kernel=<OpOverload(op='aten.divide', overload='Scalar_mode')>), <OpOverload(op='aten.fix', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b0900>, kernel=<OpOverload(op='aten.fix', overload='default')>), <OpOverload(op='aten.gather', overload='dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5944a0>, kernel=<OpOverload(op='aten.gather', overload='dimname')>), <OpOverload(op='aten.greater', overload='Scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b594900>, kernel=<OpOverload(op='aten.greater', overload='Scalar')>), <OpOverload(op='aten.greater_equal', overload='Scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58b240>, kernel=<OpOverload(op='aten.greater_equal', overload='Scalar')>), <OpOverload(op='aten.ldexp', overload='Tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58ade0>, kernel=<OpOverload(op='aten.ldexp', overload='Tensor')>), <OpOverload(op='aten.kthvalue', overload='dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59d080>, kernel=<OpOverload(op='aten.kthvalue', overload='dimname')>), <OpOverload(op='aten.less', overload='Scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58ad40>, kernel=<OpOverload(op='aten.less', overload='Scalar')>), <OpOverload(op='aten.less_equal', overload='Scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59cd60>, kernel=<OpOverload(op='aten.less_equal', overload='Scalar')>), <OpOverload(op='aten.linalg_eigvals', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59d1c0>, kernel=<OpOverload(op='aten.linalg_eigvals', overload='default')>), <OpOverload(op='aten.logcumsumexp', overload='dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b597f60>, kernel=<OpOverload(op='aten.logcumsumexp', overload='dimname')>), <OpOverload(op='aten.max', overload='names_dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59c0e0>, kernel=<OpOverload(op='aten.max', overload='names_dim')>), <OpOverload(op='aten.median', overload='names_dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b596e80>, kernel=<OpOverload(op='aten.median', overload='names_dim')>), <OpOverload(op='aten.min', overload='names_dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5972e0>, kernel=<OpOverload(op='aten.min', overload='names_dim')>), <OpOverload(op='aten.nanmedian', overload='names_dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b596520>, kernel=<OpOverload(op='aten.nanmedian', overload='names_dim')>), <OpOverload(op='aten.mode', overload='dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b0ae0>, kernel=<OpOverload(op='aten.mode', overload='dimname')>), <OpOverload(op='aten.multiply', overload='Scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b594f40>, kernel=<OpOverload(op='aten.multiply', overload='Scalar')>), <OpOverload(op='aten.negative', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b596ac0>, kernel=<OpOverload(op='aten.negative', overload='default')>), <OpOverload(op='aten.not_equal', overload='Tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b595260>, kernel=<OpOverload(op='aten.not_equal', overload='Tensor')>), <OpOverload(op='aten.not_equal', overload='Scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b595580>, kernel=<OpOverload(op='aten.not_equal', overload='Scalar')>), <OpOverload(op='aten.rrelu', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b822de0>, kernel=<OpOverload(op='aten.rrelu', overload='default')>), <OpOverload(op='aten.repeat_interleave', overload='self_Tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58bd80>, kernel=<OpOverload(op='aten.repeat_interleave', overload='self_Tensor')>), <OpOverload(op='aten.repeat_interleave', overload='self_int')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58bc40>, kernel=<OpOverload(op='aten.repeat_interleave', overload='self_int')>), <OpOverload(op='aten.scatter', overload='dimname_src')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b87e200>, kernel=<OpOverload(op='aten.scatter', overload='dimname_src')>), <OpOverload(op='aten.scatter', overload='dimname_value')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58aa20>, kernel=<OpOverload(op='aten.scatter', overload='dimname_value')>), <OpOverload(op='aten.scatter_add', overload='dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58aac0>, kernel=<OpOverload(op='aten.scatter_add', overload='dimname')>), <OpOverload(op='aten.size', overload='Dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a74c0>, kernel=<OpOverload(op='aten.size', overload='Dimname')>), <OpOverload(op='aten.size', overload='int')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59cb80>, kernel=<OpOverload(op='aten.size', overload='int')>), <OpOverload(op='aten.sort', overload='dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59cfe0>, kernel=<OpOverload(op='aten.sort', overload='dimname')>), <OpOverload(op='aten.sort', overload='dimname_stable')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59d260>, kernel=<OpOverload(op='aten.sort', overload='dimname_stable')>), <OpOverload(op='aten.stride', overload='int')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59c720>, kernel=<OpOverload(op='aten.stride', overload='int')>), <OpOverload(op='aten.stride', overload='Dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59c5e0>, kernel=<OpOverload(op='aten.stride', overload='Dimname')>), <OpOverload(op='aten.stft', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59c180>, kernel=<OpOverload(op='aten.stft', overload='default')>), <OpOverload(op='aten.__and__', overload='Scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a71a0>, kernel=<OpOverload(op='aten.__and__', overload='Scalar')>), <OpOverload(op='aten.sym_stride', overload='int')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5945e0>, kernel=<OpOverload(op='aten.sym_stride', overload='int')>), <OpOverload(op='aten.diag', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a4d60>, kernel=<OpOverload(op='aten.diag', overload='default')>), <OpOverload(op='aten.clip', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59db20>, kernel=<OpOverload(op='aten.clip', overload='default')>), <OpOverload(op='aten.float_power', overload='Scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b8180>, kernel=<OpOverload(op='aten.float_power', overload='Scalar')>), <OpOverload(op='aten.float_power', overload='Tensor_Scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b8400>, kernel=<OpOverload(op='aten.float_power', overload='Tensor_Scalar')>), <OpOverload(op='aten.float_power', overload='Tensor_Tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b8b80>, kernel=<OpOverload(op='aten.float_power', overload='Tensor_Tensor')>), <OpOverload(op='aten.square', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b1800>, kernel=<OpOverload(op='aten.square', overload='default')>), <OpOverload(op='aten.celu', overload='out')>: <function celu at 0x7fce34bfea20>, <OpOverload(op='aten.elu', overload='out')>: <function elu at 0x7fce34bff380>, <OpOverload(op='aten.relu', overload='out')>: <function relu at 0x7fce34bff740>, <OpOverload(op='aten.channel_shuffle', overload='default')>: <function channel_shuffle at 0x7fce34bffce0>, <OpOverload(op='aten.channel_shuffle', overload='out')>: <function channel_shuffle at 0x7fce34bffce0>, <OpOverload(op='aten.leaky_relu', overload='out')>: <function leaky_relu at 0x7fce34bffec0>, <OpOverload(op='aten.mish', overload='out')>: <function mish at 0x7fce34a302c0>, <OpOverload(op='aten.softshrink', overload='out')>: <function softshrink at 0x7fce34bffc40>, <OpOverload(op='aten.hardshrink', overload='default')>: <function hardshrink at 0x7fce34a311c0>, <OpOverload(op='aten.softplus', overload='out')>: <function softplus at 0x7fce34a30b80>, <OpOverload(op='aten.softshrink', overload='default')>: <function softshrink at 0x7fce34bffc40>, <OpOverload(op='aten.hardshrink', overload='out')>: <function hardshrink at 0x7fce34a311c0>, <OpOverload(op='aten.margin_ranking_loss', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5962a0>, kernel=<OpOverload(op='aten.margin_ranking_loss', overload='default')>), <OpOverload(op='aten.pairwise_distance', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b3420>, kernel=<OpOverload(op='aten.pairwise_distance', overload='default')>), <OpOverload(op='aten.hinge_embedding_loss', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b596480>, kernel=<OpOverload(op='aten.hinge_embedding_loss', overload='default')>), <OpOverload(op='aten.nll_loss', overload='out')>: <function nll_loss at 0x7fce34a31c60>, <OpOverload(op='aten.huber_loss', overload='default')>: <function huber_loss at 0x7fce34a31f80>, <OpOverload(op='aten.huber_loss', overload='out')>: <function huber_loss at 0x7fce34a31f80>, <OpOverload(op='aten.threshold', overload='default')>: <function threshold at 0x7fce34a32200>, <OpOverload(op='aten.threshold', overload='out')>: <function threshold at 0x7fce34a32200>, <OpOverload(op='aten.hardtanh', overload='out')>: <function hardtanh at 0x7fce34a32700>, <OpOverload(op='aten.gelu', overload='out')>: <function gelu at 0x7fce34a32e80>, <OpOverload(op='aten.glu', overload='out')>: <function glu at 0x7fce34a337e0>, <OpOverload(op='aten.pdist', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b36a0>, kernel=<OpOverload(op='aten.pdist', overload='default')>), <OpOverload(op='aten.pixel_shuffle', overload='out')>: <function pixel_shuffle at 0x7fce34a31e40>, <OpOverload(op='aten.pixel_unshuffle', overload='out')>: <function pixel_unshuffle at 0x7fce34a33b00>, <OpOverload(op='aten.special_i1', overload='out')>: <function i1 at 0x7fce34a59c60>, <OpOverload(op='aten.celu_', overload='default')>: <function celu at 0x7fce34bff6a0>, <OpOverload(op='aten.elu_', overload='default')>: <function elu at 0x7fce34a31b20>, <OpOverload(op='aten.special_i1', overload='default')>: <function i1 at 0x7fce34a59c60>, <OpOverload(op='aten.mish_', overload='default')>: <function mish at 0x7fce34a33ba0>, <OpOverload(op='aten.selu_', overload='default')>: <function selu at 0x7fce34a33ce0>, <OpOverload(op='aten.threshold_', overload='default')>: <function threshold at 0x7fce34a33e20>, <OpOverload(op='aten.special_bessel_j0', overload='default')>: <function bessel_j0 at 0x7fce34a58860>, <OpOverload(op='aten.special_bessel_j0', overload='out')>: <function bessel_j0 at 0x7fce34a58860>, <OpOverload(op='aten.special_bessel_j1', overload='default')>: <function bessel_j1 at 0x7fce34a58cc0>, <OpOverload(op='aten.special_bessel_j1', overload='out')>: <function bessel_j1 at 0x7fce34a58cc0>, <OpOverload(op='aten.special_entr', overload='default')>: <function entr at 0x7fce34a58fe0>, <OpOverload(op='aten.special_entr', overload='out')>: <function entr at 0x7fce34a58fe0>, <OpOverload(op='aten.special_erfcx', overload='out')>: <function erfcx at 0x7fce34a59300>, <OpOverload(op='aten.special_i0e', overload='default')>: <function i0e at 0x7fce34a59800>, <OpOverload(op='aten.special_i0e', overload='out')>: <function i0e at 0x7fce34a59800>, <OpOverload(op='aten.special_i1e', overload='default')>: <function i1e at 0x7fce34a59a80>, <OpOverload(op='aten.special_i1e', overload='out')>: <function i1e at 0x7fce34a59a80>, <OpOverload(op='aten.special_log_ndtr', overload='default')>: <function log_ndtr at 0x7fce34a58900>, <OpOverload(op='aten.special_log_ndtr', overload='out')>: <function log_ndtr at 0x7fce34a58900>, <OpOverload(op='aten.logit', overload='out')>: <function logit at 0x7fce34a59ee0>, <OpOverload(op='aten.special_xlog1py', overload='default')>: <function xlog1py at 0x7fce34a5a200>, <OpOverload(op='aten.special_xlog1py', overload='other_scalar')>: <function xlog1py at 0x7fce34a5a200>, <OpOverload(op='aten.special_xlog1py', overload='self_scalar')>: <function xlog1py at 0x7fce34a5a200>, <OpOverload(op='aten.special_xlog1py', overload='out')>: <function xlog1py at 0x7fce34a5a200>, <OpOverload(op='aten.special_xlog1py', overload='self_scalar_out')>: <function xlog1py at 0x7fce34a5a200>, <OpOverload(op='aten.special_xlog1py', overload='other_scalar_out')>: <function xlog1py at 0x7fce34a5a200>, <OpOverload(op='aten.mvlgamma', overload='default')>: <function multigammaln at 0x7fce34a5a520>, <OpOverload(op='aten.mvlgamma', overload='out')>: <function multigammaln at 0x7fce34a5a520>, <OpOverload(op='aten.special_ndtr', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a47c0>, kernel=<OpOverload(op='aten.special_ndtr', overload='default')>), <OpOverload(op='aten.special_ndtr', overload='out')>: <function ndtr at 0x7fce34a5a840>, <OpOverload(op='aten.special_ndtri', overload='default')>: <function ndtri at 0x7fce34a5ab60>, <OpOverload(op='aten.special_ndtri', overload='out')>: <function ndtri at 0x7fce34a5ab60>, <OpOverload(op='aten.special_spherical_bessel_j0', overload='default')>: <function spherical_bessel_j0 at 0x7fce34a5b100>, <OpOverload(op='aten.special_spherical_bessel_j0', overload='out')>: <function spherical_bessel_j0 at 0x7fce34a5b100>, <OpOverload(op='aten.special_zeta', overload='default')>: <function zeta at 0x7fce34a5b4c0>, <OpOverload(op='aten.special_zeta', overload='other_scalar')>: <function zeta at 0x7fce34a5b4c0>, <OpOverload(op='aten.special_zeta', overload='self_scalar')>: <function zeta at 0x7fce34a5b4c0>, <OpOverload(op='aten.special_zeta', overload='out')>: <function zeta at 0x7fce34a5b4c0>, <OpOverload(op='aten.special_zeta', overload='self_scalar_out')>: <function zeta at 0x7fce34a5b4c0>, <OpOverload(op='aten.special_zeta', overload='other_scalar_out')>: <function zeta at 0x7fce34a5b4c0>, <OpOverload(op='aten.renorm', overload='default')>: <function renorm at 0x7fce34d11f80>, <OpOverload(op='aten.renorm', overload='out')>: <function renorm at 0x7fce34d11f80>, <OpOverload(op='aten.istft', overload='default')>: <function istft at 0x7fce34d120c0>, <OpOverload(op='aten.index_fill_', overload='int_Tensor')>: <function index_fill_ at 0x7fce34d13a60>, <OpOverload(op='aten.repeat', overload='out')>: <function repeat at 0x7fce34d12480>, <OpOverload(op='aten.roll', overload='out')>: <function roll at 0x7fce34d12a20>, <OpOverload(op='aten.rot90', overload='default')>: <function rot90 at 0x7fce34d12ca0>, <OpOverload(op='aten.rot90', overload='out')>: <function rot90 at 0x7fce34d12ca0>, <OpOverload(op='aten.index_fill', overload='int_Tensor_out')>: <function index_fill at 0x7fce34d13c40>, <OpOverload(op='aten.stack', overload='out')>: <function stack at 0x7fce34d12fc0>, <OpOverload(op='aten.index_fill', overload='int_Scalar_out')>: <function index_fill at 0x7fce34d13c40>, <OpOverload(op='aten.unbind', overload='Dimname')>: <function unbind at 0x7fce34d13600>, <OpOverload(op='aten.index_fill_', overload='int_Scalar')>: <function index_fill_ at 0x7fce34d13a60>, <OpOverload(op='aten.index_fill_', overload='Dimname_Scalar')>: <function index_fill_ at 0x7fce34d13a60>, <OpOverload(op='aten.index_fill_', overload='Dimname_Tensor')>: <function index_fill_ at 0x7fce34d13a60>, <OpOverload(op='aten.index_select', overload='out')>: <function index_select at 0x7fce34d11440>, <OpOverload(op='aten.index_select', overload='dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59c4a0>, kernel=<OpOverload(op='aten.index_select', overload='dimname')>), <OpOverload(op='aten.index_select', overload='dimname_out')>: <function index_select at 0x7fce34d11440>, <OpOverload(op='aten.diag', overload='out')>: <function diag at 0x7fce34b302c0>, <OpOverload(op='aten.diagonal_scatter', overload='out')>: <function diagonal_scatter at 0x7fce34b30540>, <OpOverload(op='aten.diagonal', overload='Dimname')>: <function diagonal at 0x7fce34b30360>, <OpOverload(op='aten.diag_embed', overload='default')>: <function diag_embed at 0x7fce34b30860>, <OpOverload(op='aten.diag_embed', overload='out')>: <function diag_embed at 0x7fce34b30860>, <OpOverload(op='aten.block_diag', overload='default')>: <function _block_diag_iterable at 0x7fce34b30c20>, <OpOverload(op='aten.block_diag', overload='out')>: <function _block_diag_iterable at 0x7fce34b30c20>, <OpOverload(op='aten.unfold_copy', overload='default')>: <function unfold_copy at 0x7fce34b31580>, <OpOverload(op='aten.unfold_copy', overload='out')>: <function unfold_copy at 0x7fce34b31580>, <OpOverload(op='aten.cumsum', overload='dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5949a0>, kernel=<OpOverload(op='aten.cumsum', overload='dimname')>), <OpOverload(op='aten.cumsum', overload='dimname_out')>: <function cumsum at 0x7fce34b31620>, <OpOverload(op='aten.cumsum', overload='out')>: <function cumsum at 0x7fce34b31620>, <OpOverload(op='aten.cumprod', overload='default')>: <function cumprod at 0x7fce34b316c0>, <OpOverload(op='aten.cumprod', overload='dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58b100>, kernel=<OpOverload(op='aten.cumprod', overload='dimname')>), <OpOverload(op='aten.cumprod', overload='dimname_out')>: <function cumprod at 0x7fce34b316c0>, <OpOverload(op='aten.cumprod', overload='out')>: <function cumprod at 0x7fce34b316c0>, <OpOverload(op='aten.logspace', overload='Scalar_Tensor_out')>: <function logspace at 0x7fce34b33600>, <OpOverload(op='aten.logspace', overload='Tensor_Scalar_out')>: <function logspace at 0x7fce34b33600>, <OpOverload(op='aten.logspace', overload='Tensor_Tensor_out')>: <function logspace at 0x7fce34b33600>, <OpOverload(op='aten.arange', overload='start_out')>: <function arange at 0x7fce34b32de0>, <OpOverload(op='aten.logspace', overload='out')>: <function logspace at 0x7fce34b33600>, <OpOverload(op='aten.logspace', overload='default')>: <function logspace at 0x7fce34b33600>, <OpOverload(op='aten.lerp', overload='Scalar_out')>: <function lerp at 0x7fce34b33100>, <OpOverload(op='aten.lerp', overload='Tensor_out')>: <function lerp at 0x7fce34b33100>, <OpOverload(op='aten.logspace', overload='Scalar_Tensor')>: <function logspace at 0x7fce34b33600>, <OpOverload(op='aten.linspace', overload='Tensor_Tensor')>: <function linspace at 0x7fce34b33380>, <OpOverload(op='aten.linspace', overload='Tensor_Scalar')>: <function linspace at 0x7fce34b33380>, <OpOverload(op='aten.linspace', overload='Scalar_Tensor')>: <function linspace at 0x7fce34b33380>, <OpOverload(op='aten.linspace', overload='out')>: <function linspace at 0x7fce34b33380>, <OpOverload(op='aten.linspace', overload='Tensor_Tensor_out')>: <function linspace at 0x7fce34b33380>, <OpOverload(op='aten.linspace', overload='Tensor_Scalar_out')>: <function linspace at 0x7fce34b33380>, <OpOverload(op='aten.linspace', overload='Scalar_Tensor_out')>: <function linspace at 0x7fce34b33380>, <OpOverload(op='aten.meshgrid', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a6a20>, kernel=<OpOverload(op='aten.meshgrid', overload='default')>), <OpOverload(op='aten.logspace', overload='Tensor_Tensor')>: <function logspace at 0x7fce34b33600>, <OpOverload(op='aten.logspace', overload='Tensor_Scalar')>: <function logspace at 0x7fce34b33600>, <OpOverload(op='aten.meshgrid', overload='indexing')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a6700>, kernel=<OpOverload(op='aten.meshgrid', overload='indexing')>), <OpOverload(op='aten.eye', overload='default')>: <function eye at 0x7fce34b33740>, <OpOverload(op='aten.eye', overload='m')>: <function eye at 0x7fce34b33740>, <OpOverload(op='aten.eye', overload='out')>: <function eye at 0x7fce34b33740>, <OpOverload(op='aten.eye', overload='m_out')>: <function eye at 0x7fce34b33740>, <OpOverload(op='aten.triu', overload='out')>: <function triu at 0x7fce34b33c40>, <OpOverload(op='aten.masked_fill', overload='Scalar_out')>: <function masked_fill at 0x7fce34b5c5e0>, <OpOverload(op='aten.masked_fill', overload='Tensor_out')>: <function masked_fill at 0x7fce34b5c5e0>, <OpOverload(op='aten.masked_fill_', overload='Scalar')>: <function masked_fill_ at 0x7fce34b5c400>, <OpOverload(op='aten.masked_fill_', overload='Tensor')>: <function masked_fill_ at 0x7fce34b5c400>, <OpOverload(op='aten.norm', overload='Scalar')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.norm', overload='ScalarOpt_dim')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.norm', overload='names_ScalarOpt_dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b25c0>, kernel=<OpOverload(op='aten.norm', overload='names_ScalarOpt_dim')>), <OpOverload(op='aten.norm', overload='ScalarOpt_dim_dtype')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.norm', overload='dtype_out')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.norm', overload='out')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.norm', overload='ScalarOpt_dtype')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.norm', overload='ScalarOpt_dtype_out')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.norm', overload='Scalar_out')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.norm', overload='names_ScalarOpt_dim_dtype')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b3600>, kernel=<OpOverload(op='aten.norm', overload='names_ScalarOpt_dim_dtype')>), <OpOverload(op='aten.norm', overload='names_dtype_out')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.norm', overload='names_out')>: <function norm at 0x7fce34b5cae0>, <OpOverload(op='aten.trace', overload='default')>: <function trace at 0x7fce34b5cd60>, <OpOverload(op='aten.trace', overload='out')>: <function trace at 0x7fce34b5cd60>, <OpOverload(op='aten.tril', overload='out')>: <function tril at 0x7fce34b5d080>, <OpOverload(op='aten.tril_indices', overload='default')>: <function tril_indices at 0x7fce34b5d1c0>, <OpOverload(op='aten.tril_indices', overload='out')>: <function tril_indices at 0x7fce34b5d1c0>, <OpOverload(op='aten.triu_indices', overload='default')>: <function triu_indices at 0x7fce34b5d4e0>, <OpOverload(op='aten.triu_indices', overload='out')>: <function triu_indices at 0x7fce34b5d4e0>, <OpOverload(op='aten.bucketize', overload='Tensor')>: <function bucketize at 0x7fce34b5d760>, <OpOverload(op='aten.bucketize', overload='Scalar')>: <function bucketize at 0x7fce34b5d760>, <OpOverload(op='aten.bucketize', overload='Tensor_out')>: <function bucketize at 0x7fce34b5d760>, <OpOverload(op='aten.bucketize', overload='Scalar_out')>: <function bucketize at 0x7fce34b5d760>, <OpOverload(op='aten.deg2rad', overload='out')>: <function deg2rad at 0x7fce34b5e840>, <OpOverload(op='aten.cauchy', overload='default')>: <function cauchy at 0x7fce34b5da80>, <OpOverload(op='aten.cauchy', overload='out')>: <function cauchy at 0x7fce34b5da80>, <OpOverload(op='aten.exponential', overload='default')>: <function exponential at 0x7fce34b5dda0>, <OpOverload(op='aten.exponential', overload='out')>: <function exponential at 0x7fce34b5dda0>, <OpOverload(op='aten.geometric', overload='default')>: <function geometric at 0x7fce34b5e0c0>, <OpOverload(op='aten.geometric', overload='out')>: <function geometric at 0x7fce34b5e0c0>, <OpOverload(op='aten.log_normal', overload='default')>: <function log_normal at 0x7fce34b5e3e0>, <OpOverload(op='aten.log_normal', overload='out')>: <function log_normal at 0x7fce34b5e3e0>, <OpOverload(op='aten.normal_', overload='default')>: <function normal_ at 0x7fce34b5e480>, <OpOverload(op='aten.rad2deg', overload='out')>: <function rad2deg at 0x7fce34b5eca0>, <OpOverload(op='aten.count_nonzero', overload='dim_IntList')>: <function count_nonzero at 0x7fce34b5dc60>, <OpOverload(op='aten.count_nonzero', overload='dim_IntList_out')>: <function count_nonzero at 0x7fce34b5dc60>, <OpOverload(op='aten.count_nonzero', overload='default')>: <function count_nonzero at 0x7fce34b5dc60>, <OpOverload(op='aten.count_nonzero', overload='out')>: <function count_nonzero at 0x7fce34b5dc60>, <OpOverload(op='aten.dot', overload='out')>: <function dot at 0x7fce34b5f100>, <OpOverload(op='aten.vdot', overload='default')>: <function vdot at 0x7fce34b5f4c0>, <OpOverload(op='aten.vdot', overload='out')>: <function vdot at 0x7fce34b5f4c0>, <OpOverload(op='aten.select_scatter', overload='out')>: <function select_scatter at 0x7fce34b5f740>, <OpOverload(op='aten.abs_', overload='default')>: <function abs at 0x7fce34b5d940>, <OpOverload(op='aten.acos_', overload='default')>: <function acos at 0x7fce34b5f560>, <OpOverload(op='aten.acosh_', overload='default')>: <function acosh at 0x7fce34b5f7e0>, <OpOverload(op='aten.add_', overload='Tensor')>: <function add at 0x7fce34b5f920>, <OpOverload(op='aten.add_', overload='Scalar')>: <function add at 0x7fce34b5f920>, <OpOverload(op='aten.conj_physical_', overload='default')>: <function conj_physical at 0x7fce34b5fd80>, <OpOverload(op='aten.addcmul_', overload='default')>: <function addcmul at 0x7fce34b5fa60>, <OpOverload(op='aten.addcdiv_', overload='default')>: <function addcdiv at 0x7fce34b5fba0>, <OpOverload(op='aten.asin_', overload='default')>: <function asin at 0x7fce34b5fce0>, <OpOverload(op='aten.asinh_', overload='default')>: <function asinh at 0x7fce34b5fe20>, <OpOverload(op='aten.clamp_max_', overload='Tensor')>: <function clamp_max at 0x7fce34b5fec0>, <OpOverload(op='aten.clamp_max_', overload='default')>: <function clamp_max at 0x7fce34b5fec0>, <OpOverload(op='aten.atan_', overload='default')>: <function atan at 0x7fce34b5ff60>, <OpOverload(op='aten.atanh_', overload='default')>: <function atanh at 0x7fce34b8c0e0>, <OpOverload(op='aten.xlogy_', overload='Scalar_Other')>: <function xlogy at 0x7fce34b8fba0>, <OpOverload(op='aten.atan2_', overload='default')>: <function atan2 at 0x7fce34b8c220>, <OpOverload(op='aten.clamp_min_', overload='default')>: <function clamp_min at 0x7fce34b8cd60>, <OpOverload(op='aten.bitwise_and_', overload='Tensor')>: <function bitwise_and at 0x7fce34b8c360>, <OpOverload(op='aten.bitwise_and_', overload='Scalar')>: <function bitwise_and at 0x7fce34b8c360>, <OpOverload(op='aten.bitwise_left_shift_', overload='Tensor_Scalar')>: <function bitwise_left_shift at 0x7fce34b8c4a0>, <OpOverload(op='aten.bitwise_left_shift_', overload='Tensor')>: <function bitwise_left_shift at 0x7fce34b8c4a0>, <OpOverload(op='aten.bitwise_not_', overload='default')>: <function bitwise_not at 0x7fce34b8c5e0>, <OpOverload(op='aten.bitwise_or_', overload='Tensor')>: <function bitwise_or at 0x7fce34b8c720>, <OpOverload(op='aten.bitwise_or_', overload='Scalar')>: <function bitwise_or at 0x7fce34b8c720>, <OpOverload(op='aten.clamp_min_', overload='Tensor')>: <function clamp_min at 0x7fce34b8cd60>, <OpOverload(op='aten.bitwise_right_shift_', overload='Tensor_Scalar')>: <function bitwise_right_shift at 0x7fce34b8c860>, <OpOverload(op='aten.bitwise_right_shift_', overload='Tensor')>: <function bitwise_right_shift at 0x7fce34b8c860>, <OpOverload(op='aten.bitwise_xor_', overload='Tensor')>: <function bitwise_xor at 0x7fce34b8c9a0>, <OpOverload(op='aten.bitwise_xor_', overload='Scalar')>: <function bitwise_xor at 0x7fce34b8c9a0>, <OpOverload(op='aten.ceil_', overload='default')>: <function ceil at 0x7fce34b8cae0>, <OpOverload(op='aten.copysign_', overload='Tensor')>: <function copysign at 0x7fce34b5fb00>, <OpOverload(op='aten.clamp_', overload='default')>: <function clamp at 0x7fce34b8cc20>, <OpOverload(op='aten.clamp_', overload='Tensor')>: <function clamp at 0x7fce34b8cc20>, <OpOverload(op='aten.copysign_', overload='Scalar')>: <function copysign at 0x7fce34b5fb00>, <OpOverload(op='aten.cos_', overload='default')>: <function cos at 0x7fce34b5f880>, <OpOverload(op='aten.le_', overload='Tensor')>: <function le at 0x7fce34b5e5c0>, <OpOverload(op='aten.cosh_', overload='default')>: <function cosh at 0x7fce34b5f420>, <OpOverload(op='aten.cumsum_', overload='default')>: <function cumsum at 0x7fce34b5df80>, <OpOverload(op='aten.cumsum_', overload='dimname')>: <function cumsum at 0x7fce34b5df80>, <OpOverload(op='aten.le_', overload='Scalar')>: <function le at 0x7fce34b5e5c0>, <OpOverload(op='aten.cumprod_', overload='default')>: <function cumprod at 0x7fce34b8cea0>, <OpOverload(op='aten.cumprod_', overload='dimname')>: <function cumprod at 0x7fce34b8cea0>, <OpOverload(op='aten.deg2rad_', overload='default')>: <function deg2rad at 0x7fce34b8cf40>, <OpOverload(op='aten.digamma_', overload='default')>: <function digamma at 0x7fce34b8ccc0>, <OpOverload(op='aten.div_', overload='Tensor')>: <function div at 0x7fce34b8ca40>, <OpOverload(op='aten.div_', overload='Tensor_mode')>: <function div at 0x7fce34b8ca40>, <OpOverload(op='aten.div_', overload='Scalar')>: <function div at 0x7fce34b8ca40>, <OpOverload(op='aten.div_', overload='Scalar_mode')>: <function div at 0x7fce34b8ca40>, <OpOverload(op='aten.eq_', overload='Scalar')>: <function eq at 0x7fce34b8c7c0>, <OpOverload(op='aten.eq_', overload='Tensor')>: <function eq at 0x7fce34b8c7c0>, <OpOverload(op='aten.erf_', overload='default')>: <function erf at 0x7fce34b8c540>, <OpOverload(op='aten.erfc_', overload='default')>: <function erfc at 0x7fce34b8c2c0>, <OpOverload(op='aten.lcm_', overload='default')>: <function lcm at 0x7fce34b8e520>, <OpOverload(op='aten.erfinv_', overload='default')>: <function erfinv at 0x7fce34b8c040>, <OpOverload(op='aten.exp_', overload='default')>: <function exp at 0x7fce34b8d120>, <OpOverload(op='aten.exp2_', overload='default')>: <function exp2 at 0x7fce34b8d260>, <OpOverload(op='aten.expm1_', overload='default')>: <function expm1 at 0x7fce34b8d3a0>, <OpOverload(op='aten.float_power_', overload='Tensor')>: <function float_power at 0x7fce34b8d4e0>, <OpOverload(op='aten.float_power_', overload='Scalar')>: <function float_power at 0x7fce34b8d4e0>, <OpOverload(op='aten.log1p_', overload='default')>: <function log1p at 0x7fce34b8e5c0>, <OpOverload(op='aten.floor_', overload='default')>: <function floor at 0x7fce34b8d620>, <OpOverload(op='aten.floor_divide_', overload='Scalar')>: <function floor_divide at 0x7fce34b8d760>, <OpOverload(op='aten.floor_divide_', overload='Tensor')>: <function floor_divide at 0x7fce34b8d760>, <OpOverload(op='aten.fmod_', overload='Tensor')>: <function fmod at 0x7fce34b8d8a0>, <OpOverload(op='aten.fmod_', overload='Scalar')>: <function fmod at 0x7fce34b8d8a0>, <OpOverload(op='aten.frac_', overload='default')>: <function frac at 0x7fce34b8d9e0>, <OpOverload(op='aten.log10_', overload='default')>: <function log10 at 0x7fce34b8e660>, <OpOverload(op='aten.gcd_', overload='default')>: <function gcd at 0x7fce34b8db20>, <OpOverload(op='aten.ge_', overload='Scalar')>: <function ge at 0x7fce34b8dc60>, <OpOverload(op='aten.ge_', overload='Tensor')>: <function ge at 0x7fce34b8dc60>, <OpOverload(op='aten.gt_', overload='Scalar')>: <function gt at 0x7fce34b8dda0>, <OpOverload(op='aten.gt_', overload='Tensor')>: <function gt at 0x7fce34b8dda0>, <OpOverload(op='aten.heaviside_', overload='default')>: <function heaviside at 0x7fce34b8dee0>, <OpOverload(op='aten.lgamma_', overload='default')>: <function lgamma at 0x7fce34b5f9c0>, <OpOverload(op='aten.xlogy_', overload='Tensor')>: <function xlogy at 0x7fce34b8fba0>, <OpOverload(op='aten.hypot_', overload='default')>: <function hypot at 0x7fce34b8e020>, <OpOverload(op='aten.igamma_', overload='default')>: <function igamma at 0x7fce34b8e160>, <OpOverload(op='aten.igammac_', overload='default')>: <function igammac at 0x7fce34b8e2a0>, <OpOverload(op='aten.lerp_', overload='Scalar')>: <function lerp at 0x7fce34b5f6a0>, <OpOverload(op='aten.i0_', overload='default')>: <function i0 at 0x7fce34b8e3e0>, <OpOverload(op='aten.lerp_', overload='Tensor')>: <function lerp at 0x7fce34b5f6a0>, <OpOverload(op='aten.log2_', overload='default')>: <function log2 at 0x7fce34b8e340>, <OpOverload(op='aten.log_', overload='default')>: <function log at 0x7fce34b8e0c0>, <OpOverload(op='aten.logical_and_', overload='default')>: <function logical_and at 0x7fce34b8de40>, <OpOverload(op='aten.logical_not_', overload='default')>: <function logical_not at 0x7fce34b8dbc0>, <OpOverload(op='aten.trunc_', overload='default')>: <function trunc at 0x7fce34b8fe20>, <OpOverload(op='aten.logical_or_', overload='default')>: <function logical_or at 0x7fce34b8d940>, <OpOverload(op='aten.logical_xor_', overload='default')>: <function logical_xor at 0x7fce34b8d6c0>, <OpOverload(op='aten.lt_', overload='Scalar')>: <function lt at 0x7fce34b8d440>, <OpOverload(op='aten.lt_', overload='Tensor')>: <function lt at 0x7fce34b8d440>, <OpOverload(op='aten.mul_', overload='Tensor')>: <function mul at 0x7fce34b8d1c0>, <OpOverload(op='aten.mul_', overload='Scalar')>: <function mul at 0x7fce34b8d1c0>, <OpOverload(op='aten.mvlgamma_', overload='default')>: <function _make_alias.<locals>._fn at 0x7fce34b8c180>, <OpOverload(op='aten.true_divide_', overload='Scalar')>: <function true_divide at 0x7fce34b8ff60>, <OpOverload(op='aten.nan_to_num_', overload='default')>: <function nan_to_num at 0x7fce34b8c680>, <OpOverload(op='aten.true_divide_', overload='Tensor')>: <function true_divide at 0x7fce34b8ff60>, <OpOverload(op='aten.ne_', overload='Scalar')>: <function ne at 0x7fce34b8cb80>, <OpOverload(op='aten.ne_', overload='Tensor')>: <function ne at 0x7fce34b8cb80>, <OpOverload(op='aten.neg_', overload='default')>: <function neg at 0x7fce34b8cfe0>, <OpOverload(op='aten.nextafter_', overload='default')>: <function nextafter at 0x7fce34b8e840>, <OpOverload(op='aten.pow_', overload='Scalar')>: <function pow at 0x7fce34b8e980>, <OpOverload(op='aten.pow_', overload='Tensor')>: <function pow at 0x7fce34b8e980>, <OpOverload(op='aten.triu_', overload='default')>: <function triu at 0x7fce34b8fec0>, <OpOverload(op='aten.rad2deg_', overload='default')>: <function rad2deg at 0x7fce34b8eac0>, <OpOverload(op='aten.reciprocal_', overload='default')>: <function reciprocal at 0x7fce34b8ec00>, <OpOverload(op='aten.remainder_', overload='Tensor')>: <function remainder at 0x7fce34b8ed40>, <OpOverload(op='aten.remainder_', overload='Scalar')>: <function remainder at 0x7fce34b8ed40>, <OpOverload(op='aten.rsqrt_', overload='default')>: <function rsqrt at 0x7fce34b8ee80>, <OpOverload(op='aten.sgn_', overload='default')>: <function sgn at 0x7fce34b8efc0>, <OpOverload(op='aten.sigmoid_', overload='default')>: <function sigmoid at 0x7fce34b8f100>, <OpOverload(op='aten.sign_', overload='default')>: <function sign at 0x7fce34b8f240>, <OpOverload(op='aten.sin_', overload='default')>: <function sin at 0x7fce34b8f380>, <OpOverload(op='aten.tril_', overload='default')>: <function tril at 0x7fce34b8fd80>, <OpOverload(op='aten.sinc_', overload='default')>: <function sinc at 0x7fce34b8f4c0>, <OpOverload(op='aten.geometric_', overload='default')>: <function geometric at 0x7fce34b8f420>, <OpOverload(op='aten.sinh_', overload='default')>: <function sinh at 0x7fce34b8f600>, <OpOverload(op='aten.sqrt_', overload='default')>: <function sqrt at 0x7fce34b8f740>, <OpOverload(op='aten.square_', overload='default')>: <function square at 0x7fce34b8f880>, <OpOverload(op='aten.sub_', overload='Tensor')>: <function sub at 0x7fce34b8f9c0>, <OpOverload(op='aten.sub_', overload='Scalar')>: <function sub at 0x7fce34b8f9c0>, <OpOverload(op='aten.tan_', overload='default')>: <function tan at 0x7fce34b8fb00>, <OpOverload(op='aten.exponential_', overload='default')>: <function exponential at 0x7fce34b8f6a0>, <OpOverload(op='aten.tanh_', overload='default')>: <function tanh at 0x7fce34b8fc40>, <OpOverload(op='aten.cauchy_', overload='default')>: <function cauchy at 0x7fce34b8f920>, <OpOverload(op='aten.log_normal_', overload='default')>: <function log_normal at 0x7fce34b8f1a0>, <OpOverload(op='aten.zero_', overload='default')>: <function zero at 0x7fce34b8ef20>, <OpOverload(op='aten.alias_copy', overload='default')>: <function PyCapsule.alias at 0x7fce34b8ea20>, <OpOverload(op='aten.alias_copy', overload='out')>: <function PyCapsule.alias at 0x7fce34b8ea20>, <OpOverload(op='aten.as_strided_copy', overload='default')>: <function PyCapsule.as_strided at 0x7fce34b8c900>, <OpOverload(op='aten.as_strided_copy', overload='out')>: <function PyCapsule.as_strided at 0x7fce34b8c900>, <OpOverload(op='aten.transpose_copy', overload='int_out')>: <function PyCapsule.transpose at 0x7fce34b8e200>, <OpOverload(op='aten.diagonal_copy', overload='out')>: <function PyCapsule.diagonal at 0x7fce34b8d580>, <OpOverload(op='aten.expand_copy', overload='default')>: <function PyCapsule.expand at 0x7fce34b8df80>, <OpOverload(op='aten.expand_copy', overload='out')>: <function PyCapsule.expand at 0x7fce34b8df80>, <OpOverload(op='aten.transpose_copy', overload='int')>: <function PyCapsule.transpose at 0x7fce34b8e200>, <OpOverload(op='aten.narrow_copy', overload='default')>: <function PyCapsule.narrow at 0x7fce34b5fc40>, <OpOverload(op='aten.narrow_copy', overload='out')>: <function PyCapsule.narrow at 0x7fce34b5fc40>, <OpOverload(op='aten.squeeze_copy', overload='default')>: <function PyCapsule.squeeze at 0x7fce34bcc180>, <OpOverload(op='aten.squeeze_copy', overload='dim')>: <function PyCapsule.squeeze at 0x7fce34bcc180>, <OpOverload(op='aten.squeeze_copy', overload='dims')>: <function PyCapsule.squeeze at 0x7fce34bcc180>, <OpOverload(op='aten.squeeze_copy', overload='out')>: <function PyCapsule.squeeze at 0x7fce34bcc180>, <OpOverload(op='aten.squeeze_copy', overload='dim_out')>: <function PyCapsule.squeeze at 0x7fce34bcc180>, <OpOverload(op='aten.squeeze_copy', overload='dims_out')>: <function PyCapsule.squeeze at 0x7fce34bcc180>, <OpOverload(op='aten.permute_copy', overload='default')>: <function PyCapsule.permute at 0x7fce34bcc400>, <OpOverload(op='aten.permute_copy', overload='out')>: <function PyCapsule.permute at 0x7fce34bcc400>, <OpOverload(op='aten.fft_rfft', overload='out')>: <function rfft at 0x7fce34bceac0>, <OpOverload(op='aten.t_copy', overload='default')>: <function PyCapsule.t at 0x7fce34bcc680>, <OpOverload(op='aten.t_copy', overload='out')>: <function PyCapsule.t at 0x7fce34bcc680>, <OpOverload(op='aten.unsqueeze_copy', overload='default')>: <function PyCapsule.unsqueeze at 0x7fce34b8c400>, <OpOverload(op='aten.unsqueeze_copy', overload='out')>: <function PyCapsule.unsqueeze at 0x7fce34b8c400>, <OpOverload(op='aten.fft_ifft2', overload='out')>: <function ifft2 at 0x7fce34bfcc20>, <OpOverload(op='aten.view_copy', overload='dtype')>: <function PyCapsule.view at 0x7fce34b8f060>, <OpOverload(op='aten.view_copy', overload='out')>: <function PyCapsule.view at 0x7fce34b8f060>, <OpOverload(op='aten.view_copy', overload='dtype_out')>: <function PyCapsule.view at 0x7fce34b8f060>, <OpOverload(op='aten.complex', overload='out')>: <function complex at 0x7fce34bcd8a0>, <OpOverload(op='aten.polar', overload='out')>: <function polar at 0x7fce34bcdb20>, <OpOverload(op='aten.fft_fft', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b13a0>, kernel=<OpOverload(op='aten.fft_fft', overload='default')>), <OpOverload(op='aten.fft_fft', overload='out')>: <function fft at 0x7fce34bce5c0>, <OpOverload(op='aten.fft_ifft', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b20c0>, kernel=<OpOverload(op='aten.fft_ifft', overload='default')>), <OpOverload(op='aten.fft_ifft', overload='out')>: <function ifft at 0x7fce34bce840>, <OpOverload(op='aten.fft_rfft', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a7ce0>, kernel=<OpOverload(op='aten.fft_rfft', overload='default')>), <OpOverload(op='aten.fft_irfft', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b02c0>, kernel=<OpOverload(op='aten.fft_irfft', overload='default')>), <OpOverload(op='aten.fft_irfft', overload='out')>: <function irfft at 0x7fce34bcea20>, <OpOverload(op='aten.fft_ifft2', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b597240>, kernel=<OpOverload(op='aten.fft_ifft2', overload='default')>), <OpOverload(op='aten.fft_hfft', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b594ea0>, kernel=<OpOverload(op='aten.fft_hfft', overload='default')>), <OpOverload(op='aten.fft_hfft', overload='out')>: <function hfft at 0x7fce34bcd800>, <OpOverload(op='aten.fft_ihfft', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b595a80>, kernel=<OpOverload(op='aten.fft_ihfft', overload='default')>), <OpOverload(op='aten.fft_ihfft', overload='out')>: <function ihfft at 0x7fce34bced40>, <OpOverload(op='aten.fft_fftn', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b594b80>, kernel=<OpOverload(op='aten.fft_fftn', overload='default')>), <OpOverload(op='aten.fft_fftn', overload='out')>: <function fftn at 0x7fce34bcf600>, <OpOverload(op='aten.fft_ifftn', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58b380>, kernel=<OpOverload(op='aten.fft_ifftn', overload='default')>), <OpOverload(op='aten.fft_ifftn', overload='out')>: <function ifftn at 0x7fce34bcf880>, <OpOverload(op='aten.fft_rfftn', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58be20>, kernel=<OpOverload(op='aten.fft_rfftn', overload='default')>), <OpOverload(op='aten.fft_rfftn', overload='out')>: <function rfftn at 0x7fce34bcfb00>, <OpOverload(op='aten.fft_ihfftn', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58ab60>, kernel=<OpOverload(op='aten.fft_ihfftn', overload='default')>), <OpOverload(op='aten.fft_ihfftn', overload='out')>: <function ihfftn at 0x7fce34bcfd80>, <OpOverload(op='aten.fft_irfftn', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59cf40>, kernel=<OpOverload(op='aten.fft_irfftn', overload='default')>), <OpOverload(op='aten.fft_irfftn', overload='out')>: <function irfftn at 0x7fce34bfc4a0>, <OpOverload(op='aten.fft_hfftn', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b597d80>, kernel=<OpOverload(op='aten.fft_hfftn', overload='default')>), <OpOverload(op='aten.fft_hfftn', overload='out')>: <function hfftn at 0x7fce34bfc720>, <OpOverload(op='aten.fft_fft2', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59c680>, kernel=<OpOverload(op='aten.fft_fft2', overload='default')>), <OpOverload(op='aten.fft_fft2', overload='out')>: <function fft2 at 0x7fce34bfc9a0>, <OpOverload(op='aten.fft_rfft2', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b597420>, kernel=<OpOverload(op='aten.fft_rfft2', overload='default')>), <OpOverload(op='aten.fft_rfft2', overload='out')>: <function rfft2 at 0x7fce34bcda80>, <OpOverload(op='aten.fft_irfft2', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b597a60>, kernel=<OpOverload(op='aten.fft_irfft2', overload='default')>), <OpOverload(op='aten.fft_irfft2', overload='out')>: <function irfft2 at 0x7fce34bfccc0>, <OpOverload(op='aten.fft_hfft2', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5967a0>, kernel=<OpOverload(op='aten.fft_hfft2', overload='default')>), <OpOverload(op='aten.fft_hfft2', overload='out')>: <function hfft2 at 0x7fce34bfc400>, <OpOverload(op='aten.fft_ihfft2', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b594fe0>, kernel=<OpOverload(op='aten.fft_ihfft2', overload='default')>), <OpOverload(op='aten.fft_ihfft2', overload='out')>: <function ihfft2 at 0x7fce34bfcf40>, <OpOverload(op='aten.fft_fftshift', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5956c0>, kernel=<OpOverload(op='aten.fft_fftshift', overload='default')>), <OpOverload(op='aten.fft_ifftshift', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5958a0>, kernel=<OpOverload(op='aten.fft_ifftshift', overload='default')>), <OpOverload(op='aten.linalg_cross', overload='out')>: <function cross at 0x7fce34bfd760>, <OpOverload(op='aten.linalg_vector_norm', overload='out')>: <function vector_norm at 0x7fce34bfda80>, <OpOverload(op='aten.alpha_dropout', overload='default')>: <function alpha_dropout at 0x7fce34bfd120>, <OpOverload(op='aten.is_complex', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b596a20>, kernel=<OpOverload(op='aten.is_complex', overload='default')>), <OpOverload(op='aten.erfinv', overload='default')>: <function erfinv at 0x7fce34c594e0>, <OpOverload(op='aten.erfinv', overload='out')>: <function erfinv at 0x7fce34c594e0>, <OpOverload(op='aten.zero', overload='default')>: <function zero at 0x7fce34c6c220>, <OpOverload(op='aten.zero', overload='out')>: <function zero at 0x7fce34c6c220>, <OpOverload(op='aten.frac', overload='out')>: <function frac at 0x7fce34c6cae0>, <OpOverload(op='aten.isneginf', overload='out')>: <function isneginf at 0x7fce34c5b880>, <OpOverload(op='aten.isinf', overload='out')>: <function isinf at 0x7fce34c6d3a0>, <OpOverload(op='aten.isposinf', overload='out')>: <function isposinf at 0x7fce34c6d800>, <OpOverload(op='aten.isnan', overload='out')>: <function isnan at 0x7fce34c6cb80>, <OpOverload(op='aten.i0', overload='default')>: <function i0 at 0x7fce34c6e2a0>, <OpOverload(op='aten.i0', overload='out')>: <function i0 at 0x7fce34c6e2a0>, <OpOverload(op='aten.logsumexp', overload='names')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a6980>, kernel=<OpOverload(op='aten.logsumexp', overload='names')>), <OpOverload(op='aten.logsumexp', overload='names_out')>: <function logsumexp at 0x7fce34c6fd80>, <OpOverload(op='aten.logsumexp', overload='out')>: <function logsumexp at 0x7fce34c6fd80>, <OpOverload(op='aten.nan_to_num', overload='default')>: <function nan_to_num at 0x7fce34c6ff60>, <OpOverload(op='aten.nan_to_num', overload='out')>: <function nan_to_num at 0x7fce34c6ff60>, <OpOverload(op='aten.sigmoid', overload='out')>: <function sigmoid at 0x7fce34c88fe0>, <OpOverload(op='aten.sgn', overload='default')>: <function sgn at 0x7fce34c89440>, <OpOverload(op='aten.sgn', overload='out')>: <function sgn at 0x7fce34c89440>, <OpOverload(op='aten.sinc', overload='out')>: <function sinc at 0x7fce34c8a5c0>, <OpOverload(op='aten.bitwise_left_shift', overload='Tensor_out')>: <function bitwise_left_shift at 0x7fce34c98720>, <OpOverload(op='aten.bitwise_left_shift', overload='Tensor_Scalar_out')>: <function bitwise_left_shift at 0x7fce34c98720>, <OpOverload(op='aten.bitwise_left_shift', overload='Scalar_Tensor_out')>: <function bitwise_left_shift at 0x7fce34c98720>, <OpOverload(op='aten.bitwise_right_shift', overload='Tensor_out')>: <function bitwise_right_shift at 0x7fce34c98ea0>, <OpOverload(op='aten.bitwise_right_shift', overload='Tensor_Scalar_out')>: <function bitwise_right_shift at 0x7fce34c98ea0>, <OpOverload(op='aten.bitwise_right_shift', overload='Scalar_Tensor_out')>: <function bitwise_right_shift at 0x7fce34c98ea0>, <OpOverload(op='aten.copysign', overload='Tensor')>: <function copysign at 0x7fce34c99620>, <OpOverload(op='aten.copysign', overload='Scalar')>: <function copysign at 0x7fce34c99620>, <OpOverload(op='aten.copysign', overload='out')>: <function copysign at 0x7fce34c99620>, <OpOverload(op='aten.copysign', overload='Scalar_out')>: <function copysign at 0x7fce34c99620>, <OpOverload(op='aten.heaviside', overload='out')>: <function heaviside at 0x7fce34cb8180>, <OpOverload(op='aten.lcm', overload='default')>: <function lcm at 0x7fce34cb8220>, <OpOverload(op='aten.lcm', overload='out')>: <function lcm at 0x7fce34cb8220>, <OpOverload(op='aten.logaddexp', overload='out')>: <function logaddexp at 0x7fce34cb91c0>, <OpOverload(op='aten.logaddexp2', overload='out')>: <function logaddexp2 at 0x7fce34cb9580>, <OpOverload(op='aten.logical_and', overload='out')>: <function logical_and at 0x7fce34cb9940>, <OpOverload(op='aten.logical_not', overload='out')>: <function logical_not at 0x7fce34cb9da0>, <OpOverload(op='aten.logical_or', overload='out')>: <function logical_or at 0x7fce34cba160>, <OpOverload(op='aten.logical_xor', overload='out')>: <function logical_xor at 0x7fce34cba520>, <OpOverload(op='aten.rsub', overload='Tensor')>: <function rsub at 0x7fce34cbbb00>, <OpOverload(op='aten.rsub', overload='Scalar')>: <function rsub at 0x7fce34cbbb00>, <OpOverload(op='aten.rsub', overload='Tensor_out')>: <function rsub at 0x7fce34cbbb00>, <OpOverload(op='aten.rsub', overload='Scalar_out')>: <function rsub at 0x7fce34cbbb00>, <OpOverload(op='aten.clamp', overload='Tensor_out')>: <function clamp at 0x7fce34cd5120>, <OpOverload(op='aten.xlogy', overload='OutTensor')>: <function xlogy at 0x7fce34cd44a0>, <OpOverload(op='aten.xlogy', overload='OutScalar_Self')>: <function xlogy at 0x7fce34cd44a0>, <OpOverload(op='aten.xlogy', overload='OutScalar_Other')>: <function xlogy at 0x7fce34cd44a0>, <OpOverload(op='aten.clamp', overload='out')>: <function clamp at 0x7fce34cd5120>, <OpOverload(op='aten.addcdiv', overload='out')>: <function addcdiv at 0x7fce34cd4ae0>, <OpOverload(op='aten.addcmul', overload='out')>: <function addcmul at 0x7fce34cd4e00>, <OpOverload(op='aten.clamp_min', overload='out')>: <function clamp_min at 0x7fce34cbb1a0>, <OpOverload(op='aten.clamp_min', overload='Tensor_out')>: <function clamp_min at 0x7fce34cbb1a0>, <OpOverload(op='aten.clamp_max', overload='out')>: <function clamp_max at 0x7fce34cd51c0>, <OpOverload(op='aten.clamp_max', overload='Tensor_out')>: <function clamp_max at 0x7fce34cd51c0>, <OpOverload(op='aten.std', overload='correction_names')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b597ce0>, kernel=<OpOverload(op='aten.std', overload='correction_names')>), <OpOverload(op='aten.std', overload='correction_names_out')>: <function std at 0x7fce34cd7240>, <OpOverload(op='aten.all', overload='out')>: <function all at 0x7fce34cd6480>, <OpOverload(op='aten.all', overload='dims_out')>: <function all at 0x7fce34cd6480>, <OpOverload(op='aten.all', overload='all_out')>: <function all at 0x7fce34cd6480>, <OpOverload(op='aten.all', overload='dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59ccc0>, kernel=<OpOverload(op='aten.all', overload='dimname')>), <OpOverload(op='aten.all', overload='dimname_out')>: <function all at 0x7fce34cd6480>, <OpOverload(op='aten.std', overload='correction_out')>: <function std at 0x7fce34cd7240>, <OpOverload(op='aten.any', overload='out')>: <function any at 0x7fce34cd6700>, <OpOverload(op='aten.any', overload='dims_out')>: <function any at 0x7fce34cd6700>, <OpOverload(op='aten.any', overload='all_out')>: <function any at 0x7fce34cd6700>, <OpOverload(op='aten.any', overload='dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59c900>, kernel=<OpOverload(op='aten.any', overload='dimname')>), <OpOverload(op='aten.any', overload='dimname_out')>: <function any at 0x7fce34cd6700>, <OpOverload(op='aten.std', overload='out')>: <function std at 0x7fce34cd7240>, <OpOverload(op='aten.std', overload='names_out')>: <function std at 0x7fce34cd7240>, <OpOverload(op='aten.std', overload='correction')>: <function std at 0x7fce34cd7240>, <OpOverload(op='aten.std', overload='names_dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58b9c0>, kernel=<OpOverload(op='aten.std', overload='names_dim')>), <OpOverload(op='aten.std', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5963e0>, kernel=<OpOverload(op='aten.std', overload='default')>), <OpOverload(op='aten.std', overload='dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b596fc0>, kernel=<OpOverload(op='aten.std', overload='dim')>), <OpOverload(op='aten.mean', overload='names_dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5965c0>, kernel=<OpOverload(op='aten.mean', overload='names_dim')>), <OpOverload(op='aten.mean', overload='names_out')>: <function mean at 0x7fce34cd6c00>, <OpOverload(op='aten.mean', overload='out')>: <function mean at 0x7fce34cd6c00>, <OpOverload(op='aten.mean', overload='dtype_out')>: <function mean at 0x7fce34cd6c00>, <OpOverload(op='aten.std_mean', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b595e40>, kernel=<OpOverload(op='aten.std_mean', overload='default')>), <OpOverload(op='aten.std_mean', overload='dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58bf60>, kernel=<OpOverload(op='aten.std_mean', overload='dim')>), <OpOverload(op='aten.std_mean', overload='correction')>: <function std_mean at 0x7fce34cd5440>, <OpOverload(op='aten.std_mean', overload='names_dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b594180>, kernel=<OpOverload(op='aten.std_mean', overload='names_dim')>), <OpOverload(op='aten.std_mean', overload='correction_names')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b594220>, kernel=<OpOverload(op='aten.std_mean', overload='correction_names')>), <OpOverload(op='aten.std_mean', overload='correction_out')>: <function std_mean at 0x7fce34cd5440>, <OpOverload(op='aten.var_mean', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58b600>, kernel=<OpOverload(op='aten.var_mean', overload='default')>), <OpOverload(op='aten.var_mean', overload='dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58b740>, kernel=<OpOverload(op='aten.var_mean', overload='dim')>), <OpOverload(op='aten.var_mean', overload='correction')>: <function var_mean at 0x7fce34cd77e0>, <OpOverload(op='aten.var_mean', overload='names_dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58b920>, kernel=<OpOverload(op='aten.var_mean', overload='names_dim')>), <OpOverload(op='aten.var_mean', overload='correction_names')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b58bb00>, kernel=<OpOverload(op='aten.var_mean', overload='correction_names')>), <OpOverload(op='aten.var_mean', overload='correction_out')>: <function var_mean at 0x7fce34cd77e0>, <OpOverload(op='aten.addr', overload='out')>: <function addr at 0x7fce34cd7c40>, <OpOverload(op='aten.broadcast_tensors', overload='default')>: <function broadcast_tensors at 0x7fce34d10360>, <OpOverload(op='aten.constant_pad_nd', overload='out')>: <function constant_pad_nd at 0x7fce34d10cc0>, <OpOverload(op='aten.index_fill', overload='Dimname_Tensor')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b597100>, kernel=<OpOverload(op='aten.index_fill', overload='Dimname_Tensor')>), <OpOverload(op='aten.flip', overload='out')>: <function flip at 0x7fce34d11260>, <OpOverload(op='aten.index_fill', overload='Dimname_Scalar')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5979c0>, kernel=<OpOverload(op='aten.index_fill', overload='Dimname_Scalar')>), <OpOverload(op='aten.native_layer_norm', overload='out')>: <function native_layer_norm at 0x7fce34d119e0>, <OpOverload(op='aten.index_fill', overload='int_Scalar')>: <function index_fill at 0x7fce34d13c40>, <OpOverload(op='aten.index_fill', overload='int_Tensor')>: <function index_fill at 0x7fce34d13c40>, <OpOverload(op='aten.stft', overload='center')>: <function stft at 0x7fce34d11da0>, <OpOverload(op='aten.silu_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a5b20>, kernel=<OpOverload(op='aten.silu_backward', overload='default')>), <OpOverload(op='aten.silu_backward', overload='grad_input')>: <function silu_backward at 0x7fce34d20680>, <OpOverload(op='aten._prelu_kernel_backward', overload='default')>: <function _prelu_kernel_backward at 0x7fce34d20a40>, <OpOverload(op='aten.log_sigmoid_backward', overload='default')>: <function log_sigmoid_backward at 0x7fce34ee77e0>, <OpOverload(op='aten.log_sigmoid_backward', overload='grad_input')>: <function log_sigmoid_backward at 0x7fce34ee77e0>, <OpOverload(op='aten.mse_loss', overload='out')>: <function mse_loss at 0x7fce34d20040>, <OpOverload(op='aten.mse_loss_backward', overload='default')>: <function mse_loss_backward at 0x7fce34d20fe0>, <OpOverload(op='aten.mse_loss_backward', overload='grad_input')>: <function mse_loss_backward at 0x7fce34d20fe0>, <OpOverload(op='aten._safe_softmax', overload='default')>: <function safe_softmax at 0x7fce34d21300>, <OpOverload(op='aten.smooth_l1_loss_backward', overload='default')>: <function smooth_l1_loss_backward at 0x7fce34d21800>, <OpOverload(op='aten.smooth_l1_loss', overload='default')>: <function smooth_l1_loss at 0x7fce34d21760>, <OpOverload(op='aten.smooth_l1_loss_backward', overload='grad_input')>: <function smooth_l1_loss_backward_out at 0x7fce34d219e0>, <OpOverload(op='aten.smooth_l1_loss', overload='out')>: <function smooth_l1_loss at 0x7fce34d21760>, <OpOverload(op='aten.binary_cross_entropy_backward', overload='grad_input')>: <function binary_cross_entropy_backward at 0x7fce34d22d40>, <OpOverload(op='aten.huber_loss_backward', overload='default')>: <function huber_loss_backward at 0x7fce34d21bc0>, <OpOverload(op='aten.huber_loss_backward', overload='out')>: <function huber_loss_backward_out at 0x7fce34d21da0>, <OpOverload(op='aten.binary_cross_entropy_backward', overload='default')>: <function binary_cross_entropy_backward at 0x7fce34d22d40>, <OpOverload(op='aten.glu_backward', overload='default')>: <function glu_backward at 0x7fce34d22020>, <OpOverload(op='aten.glu_backward', overload='grad_input')>: <function glu_backward at 0x7fce34d22020>, <OpOverload(op='aten.nll_loss_backward', overload='default')>: <function nll_loss_backward at 0x7fce34d223e0>, <OpOverload(op='aten.nll_loss_backward', overload='grad_input')>: <function nll_loss_backward at 0x7fce34d223e0>, <OpOverload(op='aten.nll_loss2d_backward', overload='default')>: <function nll_loss2d_backward at 0x7fce34d22700>, <OpOverload(op='aten.nll_loss2d_backward', overload='grad_input')>: <function nll_loss2d_backward at 0x7fce34d22700>, <OpOverload(op='aten.binary_cross_entropy', overload='default')>: <function binary_cross_entropy at 0x7fce34d22ca0>, <OpOverload(op='aten.binary_cross_entropy', overload='out')>: <function binary_cross_entropy at 0x7fce34d22ca0>, <OpOverload(op='aten.soft_margin_loss', overload='default')>: <function soft_margin_loss at 0x7fce34d21940>, <OpOverload(op='aten.soft_margin_loss', overload='out')>: <function soft_margin_loss at 0x7fce34d21940>, <OpOverload(op='aten.soft_margin_loss_backward', overload='default')>: <function soft_margin_loss_backward at 0x7fce34d216c0>, <OpOverload(op='aten.soft_margin_loss_backward', overload='grad_input')>: <function soft_margin_loss_backward at 0x7fce34d216c0>, <OpOverload(op='aten.dist', overload='default')>: <function dist at 0x7fce34d231a0>, <OpOverload(op='aten.dist', overload='out')>: <function dist at 0x7fce34d231a0>, <OpOverload(op='aten._euclidean_dist', overload='default')>: <function _euclidean_dist at 0x7fce34d23420>, <OpOverload(op='aten._euclidean_dist', overload='out')>: <function _euclidean_dist at 0x7fce34d23420>, <OpOverload(op='aten.slice_backward', overload='default')>: <function slice_backward at 0x7fce34d236a0>, <OpOverload(op='aten.slice_backward', overload='out')>: <function slice_backward at 0x7fce34d236a0>, <OpOverload(op='aten.select_backward', overload='default')>: <function select_backward at 0x7fce34d23d80>, <OpOverload(op='aten.select_backward', overload='out')>: <function select_backward at 0x7fce34d23d80>, <OpOverload(op='aten.col2im', overload='out')>: <function col2im at 0x7fce34d23ce0>, <OpOverload(op='aten.diagonal_backward', overload='default')>: <function diagonal_backward at 0x7fce34d23f60>, <OpOverload(op='aten.diagonal_backward', overload='out')>: <function diagonal_backward at 0x7fce34d23f60>, <OpOverload(op='aten._softmax_backward_data', overload='default')>: <function _softmax_backward_data at 0x7fce34d48180>, <OpOverload(op='aten._softmax_backward_data', overload='out')>: <function _softmax_backward_data at 0x7fce34d48180>, <OpOverload(op='aten._log_softmax_backward_data', overload='default')>: <function _log_softmax_backward_data at 0x7fce34d487c0>, <OpOverload(op='aten._log_softmax_backward_data', overload='out')>: <function _log_softmax_backward_data at 0x7fce34d487c0>, <OpOverload(op='aten.im2col', overload='out')>: <function im2col at 0x7fce34d48ae0>, <OpOverload(op='aten.logit_backward', overload='default')>: <function logit_backward at 0x7fce34d48720>, <OpOverload(op='aten.native_dropout_backward', overload='default')>: <function native_dropout_backward at 0x7fce34d21b20>, <OpOverload(op='aten.native_dropout_backward', overload='out')>: <function native_dropout_backward at 0x7fce34d21b20>, <OpOverload(op='aten.unfold_backward', overload='default')>: <function unfold_backward at 0x7fce34d48a40>, <OpOverload(op='aten.unfold_backward', overload='out')>: <function unfold_backward at 0x7fce34d48a40>, <OpOverload(op='aten.addmm', overload='out')>: <function addmm at 0x7fce34d4ade0>, <OpOverload(op='aten.native_dropout', overload='out')>: <function native_dropout at 0x7fce34d494e0>, <OpOverload(op='aten._softmax', overload='out')>: <function _softmax at 0x7fce34d498a0>, <OpOverload(op='aten._log_softmax', overload='out')>: <function _log_softmax at 0x7fce34d49b20>, <OpOverload(op='aten._addmm_activation', overload='out')>: <function _addmm_activation at 0x7fce34d4a840>, <OpOverload(op='aten.embedding', overload='out')>: <function embedding at 0x7fce34d49da0>, <OpOverload(op='aten._chunk_cat', overload='default')>: <function _chunk_cat at 0x7fce34d4a340>, <OpOverload(op='aten._addmm_activation', overload='default')>: <function _addmm_activation at 0x7fce34d4a840>, <OpOverload(op='aten._chunk_cat', overload='out')>: <function _chunk_cat at 0x7fce34d4a340>, <OpOverload(op='aten.embedding_dense_backward', overload='default')>: <function embedding_dense_backward at 0x7fce34d4a020>, <OpOverload(op='aten.embedding_dense_backward', overload='out')>: <function embedding_dense_backward at 0x7fce34d4a020>, <OpOverload(op='aten.split_with_sizes_copy', overload='default')>: <function split_with_sizes_copy at 0x7fce34d4a3e0>, <OpOverload(op='aten.split_with_sizes_copy', overload='out')>: <function split_with_sizes_copy at 0x7fce34d4a3e0>, <OpOverload(op='aten.unsafe_split_with_sizes', overload='default')>: <function unsafe_split_with_sizes at 0x7fce34d4a660>, <OpOverload(op='aten.native_group_norm_backward', overload='default')>: <function native_group_norm_backward at 0x7fce34d49a80>, <OpOverload(op='aten.native_group_norm_backward', overload='out')>: <function native_group_norm_backward_out at 0x7fce34d49800>, <OpOverload(op='aten.addmv', overload='out')>: <function addmv at 0x7fce34d49d00>, <OpOverload(op='aten.native_layer_norm_backward', overload='default')>: <function native_layer_norm_backward at 0x7fce34d48b80>, <OpOverload(op='aten.native_layer_norm_backward', overload='out')>: <function native_layer_norm_backward_out at 0x7fce34d4ae80>, <OpOverload(op='aten.native_batch_norm', overload='out')>: <function native_batch_norm at 0x7fce34d4b6a0>, <OpOverload(op='aten.batch_norm_backward', overload='default')>: <function batch_norm_backward at 0x7fce34d70e00>, <OpOverload(op='aten.cudnn_batch_norm', overload='default')>: <function cudnn_batch_norm at 0x7fce34d4bce0>, <OpOverload(op='aten._batch_norm_with_update', overload='default')>: <function _batch_norm_with_update at 0x7fce34d70040>, <OpOverload(op='aten._batch_norm_with_update_functional', overload='default')>: <function _batch_norm_with_update_functional at 0x7fce34d700e0>, <OpOverload(op='aten._batch_norm_no_update', overload='default')>: <function _batch_norm_no_update at 0x7fce34d70220>, <OpOverload(op='aten.lift', overload='out')>: <function nop_decomposition at 0x7fce34d71120>, <OpOverload(op='aten._fused_dropout', overload='default')>: <function _fused_dropout_decomposition at 0x7fce34d70ae0>, <OpOverload(op='aten._fused_dropout', overload='out')>: <function _fused_dropout_decomposition at 0x7fce34d70ae0>, <OpOverload(op='aten._to_copy', overload='out')>: <function _to_copy at 0x7fce34d70ea0>, <OpOverload(op='aten.lift', overload='default')>: <function nop_decomposition at 0x7fce34d71120>, <OpOverload(op='aten.index_copy', overload='dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59d440>, kernel=<OpOverload(op='aten.index_copy', overload='dimname')>), <OpOverload(op='aten.cudnn_batch_norm', overload='out')>: <function cudnn_batch_norm at 0x7fce34d4bce0>, <OpOverload(op='aten.native_batch_norm_backward', overload='default')>: <function native_batch_norm_backward at 0x7fce34d70c20>, <OpOverload(op='aten.native_batch_norm_backward', overload='out')>: <function native_batch_norm_backward_out at 0x7fce34d702c0>, <OpOverload(op='aten.index_copy', overload='default')>: <function index_copy at 0x7fce34d72840>, <OpOverload(op='aten.miopen_batch_norm_backward', overload='default')>: <function miopen_batch_norm_backward at 0x7fce34d71800>, <OpOverload(op='aten.miopen_batch_norm_backward', overload='out')>: <function miopen_batch_norm_backward at 0x7fce34d71800>, <OpOverload(op='aten.cudnn_batch_norm_backward', overload='default')>: <function cudnn_batch_norm_backward at 0x7fce34d71ee0>, <OpOverload(op='aten.cudnn_batch_norm_backward', overload='out')>: <function cudnn_batch_norm_backward at 0x7fce34d71ee0>, <OpOverload(op='aten._adaptive_avg_pool2d', overload='default')>: <function adaptive_avg_pool2d at 0x7fce34d72340>, <OpOverload(op='aten._adaptive_avg_pool2d', overload='out')>: <function adaptive_avg_pool2d at 0x7fce34d72340>, <OpOverload(op='aten.max_unpool2d', overload='default')>: <function max_unpool2d at 0x7fce34d72660>, <OpOverload(op='aten.max_unpool2d', overload='out')>: <function max_unpool2d at 0x7fce34d72660>, <OpOverload(op='aten.max_unpool3d', overload='default')>: <function max_unpool3d at 0x7fce34d728e0>, <OpOverload(op='aten.max_unpool3d', overload='out')>: <function max_unpool3d at 0x7fce34d728e0>, <OpOverload(op='aten.index_add_', overload='default')>: <function index_add_ at 0x7fce34d72700>, <OpOverload(op='aten.pad_sequence', overload='default')>: <function pad_sequence at 0x7fce34d72de0>, <OpOverload(op='aten.index_add', overload='default')>: <function index_add at 0x7fce34d72ca0>, <OpOverload(op='aten.index_add', overload='out')>: <function index_add at 0x7fce34d72ca0>, <OpOverload(op='aten.index_add', overload='dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a6160>, kernel=<OpOverload(op='aten.index_add', overload='dimname')>), <OpOverload(op='aten.index_copy', overload='out')>: <function index_copy at 0x7fce34d72840>, <OpOverload(op='aten.index_copy_', overload='default')>: <function index_copy_ at 0x7fce34d72d40>, <OpOverload(op='aten.index_copy_', overload='dimname')>: <function index_copy_ at 0x7fce34d72d40>, <OpOverload(op='aten.log_sigmoid_forward', overload='default')>: <function log_sigmoid_forward at 0x7fce34d731a0>, <OpOverload(op='aten.log_sigmoid_forward', overload='output')>: <function log_sigmoid_forward at 0x7fce34d731a0>, <OpOverload(op='aten.gru', overload='input')>: <function gru_impl at 0x7fce34d9e340>, <OpOverload(op='aten.uniform_', overload='default')>: <function uniform_ at 0x7fce34d73380>, <OpOverload(op='aten._upsample_nearest_exact1d', overload='vec')>: <function _upsample_nearest_exact_vec at 0x7fce34d9c180>, <OpOverload(op='aten.gru', overload='data')>: <function gru_impl_data at 0x7fce34d9e160>, <OpOverload(op='aten._upsample_nearest_exact2d', overload='vec')>: <function _upsample_nearest_exact_vec at 0x7fce34d9c180>, <OpOverload(op='aten._upsample_nearest_exact3d', overload='vec')>: <function _upsample_nearest_exact_vec at 0x7fce34d9c180>, <OpOverload(op='aten.upsample_nearest1d', overload='out')>: <function upsample_nearest1d at 0x7fce34d9c540>, <OpOverload(op='aten._upsample_nearest_exact1d', overload='default')>: <function upsample_nearest_exact1d at 0x7fce34d9c860>, <OpOverload(op='aten._upsample_nearest_exact1d', overload='out')>: <function upsample_nearest_exact1d at 0x7fce34d9c860>, <OpOverload(op='aten.lstm', overload='data')>: <function lstm_data_impl at 0x7fce34d9de40>, <OpOverload(op='aten.lstm', overload='input')>: <function lstm_impl at 0x7fce34d9c7c0>, <OpOverload(op='aten.upsample_nearest2d', overload='out')>: <function upsample_nearest2d at 0x7fce34d9cb80>, <OpOverload(op='aten._upsample_nearest_exact2d', overload='default')>: <function _upsample_nearest_exact2d at 0x7fce34d9cea0>, <OpOverload(op='aten._upsample_nearest_exact2d', overload='out')>: <function _upsample_nearest_exact2d at 0x7fce34d9cea0>, <OpOverload(op='aten.upsample_nearest3d', overload='out')>: <function upsample_nearest3d at 0x7fce34d9d1c0>, <OpOverload(op='aten._upsample_nearest_exact3d', overload='default')>: <function _upsample_nearest_exact3d at 0x7fce34d9d4e0>, <OpOverload(op='aten._upsample_nearest_exact3d', overload='out')>: <function _upsample_nearest_exact3d at 0x7fce34d9d4e0>, <OpOverload(op='aten.rnn_tanh', overload='input')>: <function rnn_tanh_input at 0x7fce34d9dd00>, <OpOverload(op='aten.rnn_relu', overload='input')>: <function rnn_relu_input at 0x7fce34d73c40>, <OpOverload(op='aten.rnn_relu', overload='data')>: <function rnn_relu_data at 0x7fce34d736a0>, <OpOverload(op='aten.rnn_tanh', overload='data')>: <function rnn_tanh_data at 0x7fce34d72a20>, <OpOverload(op='aten._upsample_bilinear2d_aa', overload='vec')>: <function upsample_bilinear2d_aa_vec at 0x7fce34d9e520>, <OpOverload(op='aten.affine_grid_generator', overload='default')>: <function affine_grid_generator at 0x7fce34db4ae0>, <OpOverload(op='aten._upsample_bicubic2d_aa', overload='vec')>: <function upsample_bicubic2d_aa_vec at 0x7fce34d9e700>, <OpOverload(op='aten.upsample_linear1d', overload='out')>: <function upsample_linear1d at 0x7fce34d9ede0>, <OpOverload(op='aten.upsample_linear1d', overload='vec')>: <function _upsample_linear_vec at 0x7fce34d9ec00>, <OpOverload(op='aten.upsample_bilinear2d', overload='out')>: <function upsample_bilinear2d at 0x7fce34d9f100>, <OpOverload(op='aten.upsample_trilinear3d', overload='out')>: <function upsample_trilinear3d at 0x7fce34d9f380>, <OpOverload(op='aten._reshape_alias', overload='default')>: <function _reshape_alias at 0x7fce34d9fb00>, <OpOverload(op='aten._unsafe_view', overload='out')>: <function _reshape_alias at 0x7fce34d9fb00>, <OpOverload(op='aten._unsafe_masked_index', overload='default')>: <function _unsafe_masked_index at 0x7fce34d9fce0>, <OpOverload(op='aten._unsafe_masked_index_put_accumulate', overload='default')>: <function _unsafe_masked_index_put_accumulate at 0x7fce34d9fe20>, <OpOverload(op='aten.nll_loss2d_forward', overload='output')>: <function nll_loss2d_forward at 0x7fce34d9e840>, <OpOverload(op='aten.nll_loss2d_forward', overload='default')>: <function nll_loss2d_forward at 0x7fce34d9e840>, <OpOverload(op='aten.nll_loss_forward', overload='output')>: <function nll_loss_forward at 0x7fce34db4680>, <OpOverload(op='aten.affine_grid_generator', overload='out')>: <function affine_grid_generator at 0x7fce34db4ae0>, <OpOverload(op='aten.grid_sampler_2d', overload='out')>: <function grid_sampler_2d at 0x7fce34db4ea0>, <OpOverload(op='aten._weight_norm_interface', overload='out')>: <function _weight_norm_interface at 0x7fce34de4a40>, <OpOverload(op='aten.mv', overload='out')>: <function mv at 0x7fce34db51c0>, <OpOverload(op='aten.binary_cross_entropy_with_logits', overload='default')>: <function binary_cross_entropy_with_logits at 0x7fce34db5440>, <OpOverload(op='aten.binary_cross_entropy_with_logits', overload='out')>: <function binary_cross_entropy_with_logits at 0x7fce34db5440>, <OpOverload(op='aten.upsample_bicubic2d', overload='out')>: <function upsample_bicubic2d_default at 0x7fce34db5bc0>, <OpOverload(op='aten.reflection_pad3d', overload='default')>: <function _reflection_pad at 0x7fce34db6160>, <OpOverload(op='aten.reflection_pad3d', overload='out')>: <function _reflection_pad at 0x7fce34db6160>, <OpOverload(op='aten.reflection_pad2d', overload='out')>: <function _reflection_pad at 0x7fce34db6160>, <OpOverload(op='aten.reflection_pad1d', overload='out')>: <function _reflection_pad at 0x7fce34db6160>, <OpOverload(op='aten.replication_pad3d', overload='out')>: <function _replication_pad at 0x7fce34db65c0>, <OpOverload(op='aten.replication_pad2d', overload='out')>: <function _replication_pad at 0x7fce34db65c0>, <OpOverload(op='aten.replication_pad1d', overload='out')>: <function _replication_pad at 0x7fce34db65c0>, <OpOverload(op='aten.reflection_pad3d_backward', overload='default')>: <function _reflection_pad_backward at 0x7fce34db6700>, <OpOverload(op='aten.reflection_pad3d_backward', overload='grad_input')>: <function _reflection_pad_backward at 0x7fce34db6700>, <OpOverload(op='aten.reflection_pad2d_backward', overload='default')>: <function _reflection_pad_backward at 0x7fce34db62a0>, <OpOverload(op='aten.reflection_pad2d_backward', overload='grad_input')>: <function _reflection_pad_backward at 0x7fce34db62a0>, <OpOverload(op='aten.reflection_pad1d_backward', overload='default')>: <function _reflection_pad_backward at 0x7fce34db62a0>, <OpOverload(op='aten.reflection_pad1d_backward', overload='grad_input')>: <function _reflection_pad_backward at 0x7fce34db62a0>, <OpOverload(op='aten.aminmax', overload='default')>: <function aminmax at 0x7fce34db6ac0>, <OpOverload(op='aten.aminmax', overload='out')>: <function aminmax at 0x7fce34db6ac0>, <OpOverload(op='aten.nansum', overload='default')>: <function nansum at 0x7fce34db6e80>, <OpOverload(op='aten.arange', overload='out')>: <function arange_default at 0x7fce34db7100>, <OpOverload(op='aten.nansum', overload='out')>: <function nansum at 0x7fce34db6e80>, <OpOverload(op='aten.multi_margin_loss', overload='default')>: <function multi_margin_loss at 0x7fce34db7740>, <OpOverload(op='aten.multi_margin_loss', overload='out')>: <function multi_margin_loss at 0x7fce34db7740>, <OpOverload(op='aten.multilabel_margin_loss_forward', overload='default')>: <function multilabel_margin_loss_forward at 0x7fce34db7e20>, <OpOverload(op='aten.multilabel_margin_loss_forward', overload='output')>: <function multilabel_margin_loss_forward at 0x7fce34db7e20>, <OpOverload(op='aten.isin', overload='Scalar_Tensor')>: <function isin at 0x7fce34db6de0>, <OpOverload(op='aten.isin', overload='Tensor_Scalar_out')>: <function isin at 0x7fce34db6de0>, <OpOverload(op='aten.baddbmm', overload='out')>: <function baddbmm at 0x7fce34de44a0>, <OpOverload(op='aten.isin', overload='Tensor_Scalar')>: <function isin at 0x7fce34db6de0>, <OpOverload(op='aten.isin', overload='Tensor_Tensor_out')>: <function isin at 0x7fce34db6de0>, <OpOverload(op='aten.floor_divide', overload='Scalar')>: <function floor_divide at 0x7fce34de4720>, <OpOverload(op='aten.floor_divide', overload='out')>: <function floor_divide at 0x7fce34de4720>, <OpOverload(op='aten.floor_divide', overload='Scalar_out')>: <function floor_divide at 0x7fce34de4720>, <OpOverload(op='aten.isin', overload='Tensor_Tensor')>: <function isin at 0x7fce34db6de0>, <OpOverload(op='aten._weight_norm_interface', overload='default')>: <function _weight_norm_interface at 0x7fce34de4a40>, <OpOverload(op='aten.isin', overload='Scalar_Tensor_out')>: <function isin at 0x7fce34db6de0>, <OpOverload(op='aten.take', overload='default')>: <function take at 0x7fce34de4c20>, <OpOverload(op='aten.take', overload='out')>: <function take at 0x7fce34de4c20>, <OpOverload(op='aten.resize_as', overload='default')>: <function resize_as at 0x7fce34de4040>, <OpOverload(op='aten.resize_as', overload='out')>: <function resize_as at 0x7fce34de4040>, <OpOverload(op='aten.addbmm_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de4ae0>, <OpOverload(op='aten.addmm_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de4860>, <OpOverload(op='aten.addmv_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de4400>, <OpOverload(op='aten.round_', overload='decimals')>: <function register_inplace.<locals>.inplace_op at 0x7fce34db68e0>, <OpOverload(op='aten.baddbmm_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de4d60>, <OpOverload(op='aten.round_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34db68e0>, <OpOverload(op='aten.fill_', overload='Scalar')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de4ea0>, <OpOverload(op='aten.fill_', overload='Tensor')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de4ea0>, <OpOverload(op='aten.gelu_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de4fe0>, <OpOverload(op='aten.hardswish_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5120>, <OpOverload(op='aten.hardtanh_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5260>, <OpOverload(op='aten.hardsigmoid_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de53a0>, <OpOverload(op='aten.__iand__', overload='Tensor')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de54e0>, <OpOverload(op='aten.__iand__', overload='Scalar')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de54e0>, <OpOverload(op='aten.renorm_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de6160>, <OpOverload(op='aten.__ilshift__', overload='Tensor')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5620>, <OpOverload(op='aten.__ilshift__', overload='Scalar')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5620>, <OpOverload(op='aten.index_reduce_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de58a0>, <OpOverload(op='aten.__ior__', overload='Tensor')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de59e0>, <OpOverload(op='aten.__ior__', overload='Scalar')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de59e0>, <OpOverload(op='aten.scatter_', overload='value_reduce')>: <function register_inplace.<locals>.inplace_op at 0x7fce34db7060>, <OpOverload(op='aten.__irshift__', overload='Tensor')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5b20>, <OpOverload(op='aten.__irshift__', overload='Scalar')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5b20>, <OpOverload(op='aten.__ixor__', overload='Tensor')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5c60>, <OpOverload(op='aten.__ixor__', overload='Scalar')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5c60>, <OpOverload(op='aten.scatter_', overload='reduce')>: <function register_inplace.<locals>.inplace_op at 0x7fce34db7060>, <OpOverload(op='aten.leaky_relu_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5da0>, <OpOverload(op='aten.logit_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5ee0>, <OpOverload(op='aten.relu_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de6020>, <OpOverload(op='aten.scatter_', overload='src')>: <function register_inplace.<locals>.inplace_op at 0x7fce34db7060>, <OpOverload(op='aten.scatter_', overload='value')>: <function register_inplace.<locals>.inplace_op at 0x7fce34db7060>, <OpOverload(op='aten.scatter_add_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de6340>, <OpOverload(op='aten.scatter_reduce_', overload='two')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de60c0>, <OpOverload(op='aten.silu_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5e40>, <OpOverload(op='aten.as_strided_scatter', overload='out')>: <function as_strided_scatter at 0x7fce34d10220>, <OpOverload(op='aten.tanh_backward', overload='default')>: <function tanh_backward at 0x7fce34ee5940>, <OpOverload(op='aten.cat', overload='names')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59f9c0>, kernel=<OpOverload(op='aten.cat', overload='names')>), <OpOverload(op='aten.cat', overload='names_out')>: <function cat at 0x7fce34d107c0>, <OpOverload(op='aten.cat', overload='out')>: <function cat at 0x7fce34d107c0>, <OpOverload(op='aten.where', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b594680>, kernel=<OpOverload(op='aten.where', overload='default')>), <OpOverload(op='aten.where', overload='self_out')>: <function where at 0x7fce34cd5260>, <OpOverload(op='aten.sum', overload='dim_DimnameList')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b8231a0>, kernel=<OpOverload(op='aten.sum', overload='dim_DimnameList')>), <OpOverload(op='aten.sum', overload='IntList_out')>: <function sum at 0x7fce34cd6520>, <OpOverload(op='aten.sum', overload='out')>: <function sum_default at 0x7fce34de47c0>, <OpOverload(op='aten.prod', overload='default')>: <function prod at 0x7fce34cd68e0>, <OpOverload(op='aten.prod', overload='dim_Dimname')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b596660>, kernel=<OpOverload(op='aten.prod', overload='dim_Dimname')>), <OpOverload(op='aten.prod', overload='Dimname_out')>: <function prod at 0x7fce34cd68e0>, <OpOverload(op='aten.prod', overload='int_out')>: <function prod at 0x7fce34cd68e0>, <OpOverload(op='aten.var', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a5800>, kernel=<OpOverload(op='aten.var', overload='default')>), <OpOverload(op='aten.prod', overload='out')>: <function prod at 0x7fce34cd68e0>, <OpOverload(op='aten.var', overload='dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a6340>, kernel=<OpOverload(op='aten.var', overload='dim')>), <OpOverload(op='aten.var', overload='correction')>: <function var at 0x7fce34cd6fc0>, <OpOverload(op='aten.var', overload='names_dim')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b59f100>, kernel=<OpOverload(op='aten.var', overload='names_dim')>), <OpOverload(op='aten.var', overload='names_out')>: <function var at 0x7fce34cd6fc0>, <OpOverload(op='aten.var', overload='out')>: <function var at 0x7fce34cd6fc0>, <OpOverload(op='aten.var', overload='correction_out')>: <function var at 0x7fce34cd6fc0>, <OpOverload(op='aten.var', overload='correction_names')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5a5120>, kernel=<OpOverload(op='aten.var', overload='correction_names')>), <OpOverload(op='aten.var', overload='correction_names_out')>: <function var at 0x7fce34cd6fc0>, <OpOverload(op='aten.amax', overload='out')>: <function amax at 0x7fce34cd6ac0>, <OpOverload(op='aten.amin', overload='out')>: <function amin at 0x7fce34cd6980>, <OpOverload(op='aten.empty_strided', overload='out')>: <function empty_strided at 0x7fce34b320c0>, <OpOverload(op='aten.full', overload='out')>: <function full at 0x7fce34b339c0>, <OpOverload(op='aten.svd', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b595bc0>, kernel=<OpOverload(op='aten.svd', overload='default')>), <OpOverload(op='aten.normal', overload='Tensor_float_out')>: <function normal at 0x7fce34b5e700>, <OpOverload(op='aten.normal', overload='Tensor_Tensor_out')>: <function normal at 0x7fce34b5e700>, <OpOverload(op='aten.normal', overload='float_float_out')>: <function normal at 0x7fce34b5e700>, <OpOverload(op='aten.normal', overload='float_Tensor_out')>: <function normal at 0x7fce34b5e700>, <OpOverload(op='aten.normal', overload='out')>: <function normal at 0x7fce34b5e700>, <OpOverload(op='aten.uniform', overload='default')>: <function uniform at 0x7fce34d73560>, <OpOverload(op='aten.uniform', overload='out')>: <function uniform at 0x7fce34d73560>, <OpOverload(op='aten.frexp', overload='Tensor')>: <function frexp at 0x7fce34c9b100>, <OpOverload(op='aten.frexp', overload='Tensor_out')>: <function frexp at 0x7fce34c9b100>, <OpOverload(op='aten.linear', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b597060>, kernel=<OpOverload(op='aten.linear', overload='default')>), <OpOverload(op='aten.sigmoid_backward', overload='default')>: <function sigmoid_backward at 0x7fce34ee5da0>, <OpOverload(op='aten.sigmoid_backward', overload='grad_input')>: <function sigmoid_backward at 0x7fce34ee5da0>, <OpOverload(op='aten.softplus_backward', overload='default')>: <function softplus_backward at 0x7fce34ee6160>, <OpOverload(op='aten.softplus_backward', overload='grad_input')>: <function softplus_backward at 0x7fce34ee6160>, <OpOverload(op='aten.elu_backward', overload='default')>: <function elu_backward at 0x7fce34ee5d00>, <OpOverload(op='aten.elu_backward', overload='grad_input')>: <function elu_backward at 0x7fce34ee5d00>, <OpOverload(op='aten.hardsigmoid', overload='out')>: <function hardsigmoid at 0x7fce34ee6d40>, <OpOverload(op='aten.hardsigmoid_backward', overload='default')>: <function hardsigmoid_backward at 0x7fce34ee6de0>, <OpOverload(op='aten.hardsigmoid_backward', overload='grad_input')>: <function hardsigmoid_backward at 0x7fce34ee6de0>, <OpOverload(op='aten.hardtanh_backward', overload='grad_input')>: <function hardtanh_backward at 0x7fce34ee6340>, <OpOverload(op='aten.hardswish', overload='out')>: <function hardswish at 0x7fce34ee72e0>, <OpOverload(op='aten.hardswish_backward', overload='default')>: <function hardswish_backward at 0x7fce34ee7600>, <OpOverload(op='aten.hardswish_backward', overload='out')>: <function hardswish_backward at 0x7fce34ee7600>, <OpOverload(op='aten.threshold_backward', overload='default')>: <function threshold_backward at 0x7fce34ee76a0>, <OpOverload(op='aten.threshold_backward', overload='grad_input')>: <function threshold_backward at 0x7fce34ee76a0>, <OpOverload(op='aten.leaky_relu_backward', overload='default')>: <function leaky_relu_backward at 0x7fce34ee79c0>, <OpOverload(op='aten.leaky_relu_backward', overload='grad_input')>: <function leaky_relu_backward at 0x7fce34ee79c0>, <OpOverload(op='aten.gelu_backward', overload='default')>: <function gelu_backward at 0x7fce34ee7d80>, <OpOverload(op='aten.gelu_backward', overload='grad_input')>: <function gelu_backward at 0x7fce34ee7d80>, <OpOverload(op='aten.mish_backward', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5976a0>, kernel=<OpOverload(op='aten.mish_backward', overload='default')>), <OpOverload(op='aten.rrelu_with_noise_backward', overload='out')>: <function rrelu_with_noise_backward at 0x7fce34d20f40>, <OpOverload(op='aten.silu', overload='out')>: <function silu at 0x7fce34d205e0>, <OpOverload(op='aten.rrelu_with_noise_backward', overload='default')>: <function rrelu_with_noise_backward at 0x7fce34d20f40>, <OpOverload(op='aten.sin', overload='out')>: <function sin at 0x7fce34c8a160>, <OpOverload(op='aten.sinh', overload='out')>: <function sinh at 0x7fce34c8aa20>, <OpOverload(op='aten.sqrt', overload='out')>: <function sqrt at 0x7fce34c8ae80>, <OpOverload(op='aten.tan', overload='out')>: <function tan at 0x7fce34c8b6a0>, <OpOverload(op='aten.tanh', overload='out')>: <function tanh at 0x7fce34c8bb00>, <OpOverload(op='aten.trunc', overload='out')>: <function trunc at 0x7fce34c8a660>, <OpOverload(op='aten.add', overload='Scalar_out')>: <function add at 0x7fce34c88360>, <OpOverload(op='aten.add', overload='out')>: <function add at 0x7fce34c88360>, <OpOverload(op='aten.atan2', overload='out')>: <function atan2 at 0x7fce34c8bf60>, <OpOverload(op='aten.bitwise_and', overload='Tensor_out')>: <function bitwise_and at 0x7fce34c98360>, <OpOverload(op='aten.bitwise_and', overload='Scalar_out')>: <function bitwise_and at 0x7fce34c98360>, <OpOverload(op='aten.bitwise_and', overload='Scalar_Tensor_out')>: <function bitwise_and at 0x7fce34c98360>, <OpOverload(op='aten.bitwise_or', overload='Tensor_out')>: <function bitwise_or at 0x7fce34c98ae0>, <OpOverload(op='aten.bitwise_or', overload='Scalar_out')>: <function bitwise_or at 0x7fce34c98ae0>, <OpOverload(op='aten.bitwise_or', overload='Scalar_Tensor_out')>: <function bitwise_or at 0x7fce34c98ae0>, <OpOverload(op='aten.bitwise_xor', overload='Tensor_out')>: <function bitwise_xor at 0x7fce34c99260>, <OpOverload(op='aten.bitwise_xor', overload='Scalar_out')>: <function bitwise_xor at 0x7fce34c99260>, <OpOverload(op='aten.bitwise_xor', overload='Scalar_Tensor_out')>: <function bitwise_xor at 0x7fce34c99260>, <OpOverload(op='aten.div', overload='out')>: <function div at 0x7fce34c998a0>, <OpOverload(op='aten.div', overload='out_mode')>: <function div at 0x7fce34c998a0>, <OpOverload(op='aten.div', overload='Scalar_mode_out')>: <function div at 0x7fce34c998a0>, <OpOverload(op='aten.div', overload='Scalar_out')>: <function div at 0x7fce34c998a0>, <OpOverload(op='aten.eq', overload='Scalar_out')>: <function eq at 0x7fce34c89080>, <OpOverload(op='aten.eq', overload='Tensor_out')>: <function eq at 0x7fce34c89080>, <OpOverload(op='aten.fmax', overload='default')>: <function fmax at 0x7fce34c9a3e0>, <OpOverload(op='aten.fmax', overload='out')>: <function fmax at 0x7fce34c9a3e0>, <OpOverload(op='aten.fmin', overload='default')>: <function fmin at 0x7fce34c9a7a0>, <OpOverload(op='aten.fmin', overload='out')>: <function fmin at 0x7fce34c9a7a0>, <OpOverload(op='aten.fmod', overload='Tensor_out')>: <function fmod at 0x7fce34c9ab60>, <OpOverload(op='aten.fmod', overload='Scalar_out')>: <function fmod at 0x7fce34c9ab60>, <OpOverload(op='aten.gcd', overload='default')>: <function gcd at 0x7fce34c9b600>, <OpOverload(op='aten.gcd', overload='out')>: <function gcd at 0x7fce34c9b600>, <OpOverload(op='aten.ge', overload='Scalar_out')>: <function ge at 0x7fce34c9b9c0>, <OpOverload(op='aten.ge', overload='Tensor_out')>: <function ge at 0x7fce34c9b9c0>, <OpOverload(op='aten.gt', overload='Tensor_out')>: <function gt at 0x7fce34c9bd80>, <OpOverload(op='aten.gt', overload='Scalar_out')>: <function gt at 0x7fce34c9bd80>, <OpOverload(op='aten.hypot', overload='default')>: <function hypot at 0x7fce34cb8540>, <OpOverload(op='aten.hypot', overload='out')>: <function hypot at 0x7fce34cb8540>, <OpOverload(op='aten.igamma', overload='default')>: <function igamma at 0x7fce34cb8900>, <OpOverload(op='aten.igamma', overload='out')>: <function igamma at 0x7fce34cb8900>, <OpOverload(op='aten.igammac', overload='default')>: <function igammac at 0x7fce34c9b240>, <OpOverload(op='aten.igammac', overload='out')>: <function igammac at 0x7fce34c9b240>, <OpOverload(op='aten.le', overload='Tensor_out')>: <function le at 0x7fce34cb8e00>, <OpOverload(op='aten.le', overload='Scalar_out')>: <function le at 0x7fce34cb8e00>, <OpOverload(op='aten.lt', overload='Scalar_out')>: <function lt at 0x7fce34cba8e0>, <OpOverload(op='aten.lt', overload='Tensor_out')>: <function lt at 0x7fce34cba8e0>, <OpOverload(op='aten.maximum', overload='out')>: <function maximum at 0x7fce34cbaca0>, <OpOverload(op='aten.minimum', overload='out')>: <function minimum at 0x7fce34cbb060>, <OpOverload(op='aten.mul', overload='Scalar')>: <function mul at 0x7fce34cb99e0>, <OpOverload(op='aten.mul', overload='Scalar_out')>: <function mul at 0x7fce34cb99e0>, <OpOverload(op='aten.mul', overload='out')>: <function mul at 0x7fce34cb99e0>, <OpOverload(op='aten.ne', overload='Tensor_out')>: <function ne at 0x7fce34cbb100>, <OpOverload(op='aten.ne', overload='Scalar_out')>: <function ne at 0x7fce34cbb100>, <OpOverload(op='aten.nextafter', overload='default')>: <function nextafter at 0x7fce34cbb4c0>, <OpOverload(op='aten.nextafter', overload='out')>: <function nextafter at 0x7fce34cbb4c0>, <OpOverload(op='aten.pow', overload='Scalar_out')>: <function pow at 0x7fce34c98b80>, <OpOverload(op='aten.tanh_backward', overload='grad_input')>: <function tanh_backward at 0x7fce34ee5940>, <OpOverload(op='aten.pow', overload='Tensor_Scalar_out')>: <function pow at 0x7fce34c98b80>, <OpOverload(op='aten.pow', overload='Tensor_Tensor_out')>: <function pow at 0x7fce34c98b80>, <OpOverload(op='aten.remainder', overload='Scalar_Tensor')>: <function remainder at 0x7fce34cbb880>, <OpOverload(op='aten.remainder', overload='Scalar_out')>: <function remainder at 0x7fce34cbb880>, <OpOverload(op='aten.remainder', overload='Scalar_Tensor_out')>: <function remainder at 0x7fce34cbb880>, <OpOverload(op='aten.remainder', overload='Tensor_out')>: <function remainder at 0x7fce34cbb880>, <OpOverload(op='aten.sub', overload='Scalar_out')>: <function sub at 0x7fce34cbbe20>, <OpOverload(op='aten.sub', overload='out')>: <function sub at 0x7fce34cbbe20>, <OpOverload(op='aten.squeeze', overload='dims')>: <function squeeze at 0x7fce34d11ee0>, <OpOverload(op='aten.transpose', overload='Dimname')>: <function transpose at 0x7fce34b30fe0>, <OpOverload(op='aten.acosh', overload='out')>: <function acosh at 0x7fce34de7e20>, <OpOverload(op='aten.asin', overload='out')>: <function asin at 0x7fce34c582c0>, <OpOverload(op='aten.asinh', overload='out')>: <function asinh at 0x7fce34c58720>, <OpOverload(op='aten.atan', overload='out')>: <function atan at 0x7fce34c58b80>, <OpOverload(op='aten.atanh', overload='out')>: <function atanh at 0x7fce34c58fe0>, <OpOverload(op='aten.cos', overload='out')>: <function cos at 0x7fce34c5a0c0>, <OpOverload(op='aten.cosh', overload='out')>: <function cosh at 0x7fce34c5a520>, <OpOverload(op='aten.bitwise_not', overload='out')>: <function bitwise_not at 0x7fce34c59440>, <OpOverload(op='aten.ceil', overload='out')>: <function ceil at 0x7fce34c598a0>, <OpOverload(op='aten.conj_physical', overload='default')>: <function conj_physical at 0x7fce34c59c60>, <OpOverload(op='aten.clone', overload='out')>: <function clone at 0x7fce34cd54e0>, <OpOverload(op='aten.conj_physical', overload='out')>: <function conj_physical at 0x7fce34c59c60>, <OpOverload(op='aten.digamma', overload='default')>: <function digamma at 0x7fce34c5a980>, <OpOverload(op='aten.digamma', overload='out')>: <function digamma at 0x7fce34c5a980>, <OpOverload(op='aten.erf', overload='out')>: <function erf at 0x7fce34de7a60>, <OpOverload(op='aten.erfc', overload='out')>: <function erfc at 0x7fce34c5af20>, <OpOverload(op='aten.exp', overload='out')>: <function exp at 0x7fce34c5b380>, <OpOverload(op='aten.expm1', overload='out')>: <function expm1 at 0x7fce34c5b7e0>, <OpOverload(op='aten.exp2', overload='out')>: <function exp2 at 0x7fce34c5bc40>, <OpOverload(op='aten.floor', overload='out')>: <function floor at 0x7fce34c6c680>, <OpOverload(op='aten.lgamma', overload='default')>: <function lgamma at 0x7fce34c6e700>, <OpOverload(op='aten.lgamma', overload='out')>: <function lgamma at 0x7fce34c6e700>, <OpOverload(op='aten.log', overload='out')>: <function log at 0x7fce34c6eb60>, <OpOverload(op='aten.log1p', overload='out')>: <function log1p at 0x7fce34c6efc0>, <OpOverload(op='aten.log2', overload='out')>: <function log2 at 0x7fce34c6f420>, <OpOverload(op='aten.log10', overload='out')>: <function log10 at 0x7fce34c6f880>, <OpOverload(op='aten.reciprocal', overload='out')>: <function reciprocal at 0x7fce34c6f060>, <OpOverload(op='aten.neg', overload='out')>: <function neg at 0x7fce34c88540>, <OpOverload(op='aten.round', overload='out')>: <function round at 0x7fce34c887c0>, <OpOverload(op='aten.round', overload='decimals_out')>: <function round at 0x7fce34c887c0>, <OpOverload(op='aten.rsqrt', overload='out')>: <function rsqrt at 0x7fce34c88b80>, <OpOverload(op='aten.sign', overload='out')>: <function sign at 0x7fce34c898a0>, <OpOverload(op='aten.signbit', overload='default')>: <function signbit at 0x7fce34c89d00>, <OpOverload(op='aten.signbit', overload='out')>: <function signbit at 0x7fce34c89d00>, <OpOverload(op='aten.abs', overload='out')>: <function abs at 0x7fce34de7420>, <OpOverload(op='aten.acos', overload='out')>: <function acos at 0x7fce34de79c0>, <OpOverload(op='aten.diagonal_scatter', overload='default')>: <function diagonal_scatter at 0x7fce34b30540>, <OpOverload(op='aten.sym_numel', overload='default')>: <function sym_numel at 0x7fce34de4540>, <OpOverload(op='aten.empty_like', overload='out')>: <function empty_like at 0x7fce34b32b60>, <OpOverload(op='aten.ones_like', overload='out')>: <function ones_like at 0x7fce34b33f60>, <OpOverload(op='aten.zeros_like', overload='out')>: <function zeros_like at 0x7fce34b33ce0>, <OpOverload(op='aten.new_empty', overload='out')>: <function new_empty at 0x7fce34b31080>, <OpOverload(op='aten.new_empty_strided', overload='out')>: <function new_empty_strided at 0x7fce34b30680>, <OpOverload(op='aten.new_full', overload='out')>: <function new_full at 0x7fce34b328e0>, <OpOverload(op='aten.new_zeros', overload='out')>: <function new_zeros at 0x7fce34b32160>, <OpOverload(op='aten.new_ones', overload='out')>: <function new_ones at 0x7fce34b32660>, <OpOverload(op='aten.item', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b595620>, kernel=<OpOverload(op='aten.item', overload='default')>), <OpOverload(op='aten.nonzero_numpy', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b595d00>, kernel=<OpOverload(op='aten.nonzero_numpy', overload='default')>), <OpOverload(op='aten.slice_scatter', overload='out')>: <function slice_scatter at 0x7fce34d23b00>, <OpOverload(op='aten.index_put_', overload='default')>: <function register_inplace.<locals>.inplace_op at 0x7fce34de5760>, <OpOverload(op='aten.as_strided_scatter', overload='default')>: <function as_strided_scatter at 0x7fce34d10220>, <OpOverload(op='aten.lift_fresh', overload='default')>: <function nop_decomposition at 0x7fce34d71120>, <OpOverload(op='quantized.conv3d_transpose', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5ba660>, kernel=<OpOverload(op='quantized.conv3d_transpose', overload='default')>), <OpOverload(op='quantized.conv3d_padding', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b9d00>, kernel=<OpOverload(op='quantized.conv3d_padding', overload='default')>), <OpOverload(op='quantized.conv2d_dilation', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b9f80>, kernel=<OpOverload(op='quantized.conv2d_dilation', overload='default')>), <OpOverload(op='quantized.conv_transpose1d_unpack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5ba020>, kernel=<OpOverload(op='quantized.conv_transpose1d_unpack', overload='default')>), <OpOverload(op='quantized.conv_transpose3d_groups', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5baa20>, kernel=<OpOverload(op='quantized.conv_transpose3d_groups', overload='default')>), <OpOverload(op='quantized.conv2d_unpack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5bb920>, kernel=<OpOverload(op='quantized.conv2d_unpack', overload='default')>), <OpOverload(op='quantized.conv_transpose3d_padding', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5bb380>, kernel=<OpOverload(op='quantized.conv_transpose3d_padding', overload='default')>), <OpOverload(op='quantized.conv2d_output_padding', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5bae80>, kernel=<OpOverload(op='quantized.conv2d_output_padding', overload='default')>), <OpOverload(op='quantized.conv3d_dilation', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5baac0>, kernel=<OpOverload(op='quantized.conv3d_dilation', overload='default')>), <OpOverload(op='quantized.conv2d_padding', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b9da0>, kernel=<OpOverload(op='quantized.conv2d_padding', overload='default')>), <OpOverload(op='quantized.conv1d_unpack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5bad40>, kernel=<OpOverload(op='quantized.conv1d_unpack', overload='default')>), <OpOverload(op='quantized.conv_transpose3d_output_padding', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b98a0>, kernel=<OpOverload(op='quantized.conv_transpose3d_output_padding', overload='default')>), <OpOverload(op='quantized.conv3d_groups', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b9b20>, kernel=<OpOverload(op='quantized.conv3d_groups', overload='default')>), <OpOverload(op='quantized.conv_transpose3d_stride', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b99e0>, kernel=<OpOverload(op='quantized.conv_transpose3d_stride', overload='default')>), <OpOverload(op='quantized.conv_transpose3d_unpack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5ba7a0>, kernel=<OpOverload(op='quantized.conv_transpose3d_unpack', overload='default')>), <OpOverload(op='quantized.conv_transpose3d_transpose', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b9c60>, kernel=<OpOverload(op='quantized.conv_transpose3d_transpose', overload='default')>), <OpOverload(op='quantized.conv2d_groups', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5ba2a0>, kernel=<OpOverload(op='quantized.conv2d_groups', overload='default')>), <OpOverload(op='quantized.make_quantized_cell_params_fp16', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5bbba0>, kernel=<OpOverload(op='quantized.make_quantized_cell_params_fp16', overload='default')>), <OpOverload(op='quantized.linear_unpack_fp16', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5bade0>, kernel=<OpOverload(op='quantized.linear_unpack_fp16', overload='default')>), <OpOverload(op='quantized.conv3d_stride', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5bab60>, kernel=<OpOverload(op='quantized.conv3d_stride', overload='default')>), <OpOverload(op='quantized.conv_transpose3d_dilation', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5ba340>, kernel=<OpOverload(op='quantized.conv_transpose3d_dilation', overload='default')>), <OpOverload(op='quantized.conv_transpose2d_transpose', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5ba480>, kernel=<OpOverload(op='quantized.conv_transpose2d_transpose', overload='default')>), <OpOverload(op='quantized.conv2d_stride', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5b9e40>, kernel=<OpOverload(op='quantized.conv2d_stride', overload='default')>), <OpOverload(op='quantized.conv2d_transpose', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5bb7e0>, kernel=<OpOverload(op='quantized.conv2d_transpose', overload='default')>), <OpOverload(op='quantized.linear_unpack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5bb1a0>, kernel=<OpOverload(op='quantized.linear_unpack', overload='default')>), <OpOverload(op='quantized.embedding_bag_unpack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5bb100>, kernel=<OpOverload(op='quantized.embedding_bag_unpack', overload='default')>), <OpOverload(op='quantized.conv3d_unpack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5baca0>, kernel=<OpOverload(op='quantized.conv3d_unpack', overload='default')>), <OpOverload(op='quantized.conv_unpack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5ba8e0>, kernel=<OpOverload(op='quantized.conv_unpack', overload='default')>), <OpOverload(op='quantized.conv_transpose2d_dilation', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5ba3e0>, kernel=<OpOverload(op='quantized.conv_transpose2d_dilation', overload='default')>), <OpOverload(op='quantized.conv_transpose2d_output_padding', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5ba5c0>, kernel=<OpOverload(op='quantized.conv_transpose2d_output_padding', overload='default')>), <OpOverload(op='quantized.conv_transpose2d_padding', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5bac00>, kernel=<OpOverload(op='quantized.conv_transpose2d_padding', overload='default')>), <OpOverload(op='sparse.qlinear_unpack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5ba980>, kernel=<OpOverload(op='sparse.qlinear_unpack', overload='default')>), <OpOverload(op='quantized.conv_transpose2d_groups', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5ba840>, kernel=<OpOverload(op='quantized.conv_transpose2d_groups', overload='default')>), <OpOverload(op='quantized.conv3d_output_padding', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5ba200>, kernel=<OpOverload(op='quantized.conv3d_output_padding', overload='default')>), <OpOverload(op='quantized.conv_transpose2d_unpack', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5bb9c0>, kernel=<OpOverload(op='quantized.conv_transpose2d_unpack', overload='default')>), <OpOverload(op='quantized.conv_transpose2d_stride', overload='default')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5bb6a0>, kernel=<OpOverload(op='quantized.conv_transpose2d_stride', overload='default')>), <OpOverload(op='profiler._record_function_exit', overload='_RecordFunction')>: functools.partial(<function _get_decomp_for_cia.<locals>._special_op_to_decompose_cia at 0x7fcd1b5bbb00>, kernel=<OpOverload(op='profiler._record_function_exit', overload='_RecordFunction')>)}